From 4648073df71f4780b52b80cc661148e70e051e6e Mon Sep 17 00:00:00 2001 From: "Shah, Kevin" Date: Mon, 6 Nov 2023 10:41:04 -0500 Subject: [PATCH] Added branch name in .releaserc --- .github/workflows/release-github.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-github.yml b/.github/workflows/release-github.yml index 7e5bbd0d3..592ecda9b 100644 --- a/.github/workflows/release-github.yml +++ b/.github/workflows/release-github.yml @@ -82,7 +82,9 @@ jobs: env: NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} # <-- Allows semantic-release to publish to npm without 2 factor auth. npm_config_tag: ${{ env.NPM_DIST_TAG }} # <-- For main, this is `latest.` Otherwise, `next`, `next-major`, etc. See ./.releaserc for release branch config. - run: npm publish --tag $RELEASE_CHANNEL --workspaces + run: | + echo "Release Channel ::: " $RELEASE_CHANNEL + npm publish --tag $RELEASE_CHANNEL --workspaces - name: Dry-run Firebolt SDKs to NPM if: steps.check_build.outputs.files_exists == 'true' && (github.ref_name == 'main' && github.event_name != 'workflow_dispatch') env: