-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95e65a0
commit 007209f
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,8 @@ jobs: | |
run: | | ||
echo "NPM DIST TAG ::: " ${{ env.NPM_DIST_TAG }} | ||
echo "Release Channel ::: " $RELEASE_CHANNEL | ||
npm version prerelease --preid $RELEASE_CHANNEL | ||
npm version prerelease --preid $RELEASE_CHANNEL --workspaces | ||
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') | ||
|
@@ -106,8 +108,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_BOT_PAT }} # <-- Allows semantic-release-bot to push changes to protected branches | ||
npm_config_tag: ${{ env.NPM_DIST_TAG }} # <-- For main, this is `latest.` Otherwise, `next`, `next-major`, etc. See ./.releaserc for release branch config. | ||
run: | | ||
echo "GitHub Config ::::: '${{ github.event.pull_request.head.repo.full_name }}'" | ||
echo "GitHub Event Name :::: '${{ github.event_name }}'" | ||
npm run publish:docs /tmp/firebolt-docs $RELEASE_CHANNEL | ||
cd /tmp/firebolt-docs | ||
git config --global user.email "[email protected]" | ||
|