-
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.
Merge branch 'next' into feature/user-interest
- Loading branch information
Showing
47 changed files
with
24,045 additions
and
1,902 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 |
---|---|---|
|
@@ -6,6 +6,12 @@ on: | |
- 'main' | ||
- 'next' | ||
- 'next-major' | ||
- 'proposed' | ||
pull_request: | ||
types: [opened, synchronize] | ||
branches: | ||
- 'next' | ||
- 'proposed' | ||
env: | ||
HUSKY: 0 | ||
jobs: | ||
|
@@ -44,25 +50,33 @@ jobs: | |
run: | | ||
echo "Setting RELEASE_CHANNEL to '$(node ./src/js/version.mjs channel $NPM_DIST_TAG)' using branch name '$NPM_DIST_TAG'" | ||
echo "RELEASE_CHANNEL=$(node ./src/js/version.mjs channel $NPM_DIST_TAG)" >> $GITHUB_ENV | ||
- name: Override release channel for PRs | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
echo "Setting RELEASE_CHANNEL to 'pr${{ github.event.number }}'" | ||
echo "RELEASE_CHANNEL=pr${{ github.event.number }}" >> $GITHUB_ENV | ||
- name: Release mono-artifact to GitHub | ||
if: github.ref_name != 'main' || github.event_name == 'workflow_dispatch' | ||
if: (github.ref_name != 'main' && github.event_name != 'pull_request') || github.event_name == 'workflow_dispatch' | ||
env: | ||
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: npx semantic-release | ||
- name: Dry-run mono-artifact | ||
if: github.ref_name == 'main' && github.event_name != 'workflow_dispatch' | ||
if: (github.ref_name == 'main' && github.event_name != 'workflow_dispatch') || github.event_name == 'pull_request' | ||
env: | ||
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: npx semantic-release --dry-run | ||
- name: Build artifacts for PRs | ||
if: github.event_name == 'pull_request' | ||
run: npm run dist | ||
- name: Check if semantic-release created a build | ||
id: check_build | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "./src/sdks/core/dist/lib/firebolt.mjs" | ||
- name: Release Firebolt SDKs to NPM | ||
if: steps.check_build.outputs.files_exists == 'true' && (github.ref_name != 'main' || github.event_name == 'workflow_dispatch') | ||
if: steps.check_build.outputs.files_exists == 'true' && github.event_name != 'pull_request' && (github.ref_name != 'main' || github.event_name == 'workflow_dispatch') | ||
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. | ||
|
@@ -87,10 +101,10 @@ 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: | | ||
npm run publish:docs /tmp/firebolt-docs | ||
npm run publish:docs /tmp/firebolt-docs $RELEASE_CHANNEL | ||
cd /tmp/firebolt-docs | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
git add --all | ||
git commit -m "chore: Publish $RELEASE_CHANNEL" | ||
git diff-index --quiet HEAD || git commit -m "chore: Publish $RELEASE_CHANNEL" | ||
git push |
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
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
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
Oops, something went wrong.