-
-
Notifications
You must be signed in to change notification settings - Fork 92
chore: Update workflows and automate releases #125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| name: Main | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| check-workflows: | ||
| name: Check workflows | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Download actionlint | ||
| id: download-actionlint | ||
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/7fdc9630cc360ea1a469eed64ac6d78caeda1234/scripts/download-actionlint.bash) 1.6.23 | ||
| shell: bash | ||
| - name: Check workflow files | ||
| run: ${{ steps.download-actionlint.outputs.executable }} -color | ||
| shell: bash | ||
|
|
||
| build-lint: | ||
| name: Build and lint | ||
| uses: ./.github/workflows/build-lint.yml | ||
|
|
||
| all-jobs-completed: | ||
| name: All jobs completed | ||
| runs-on: ubuntu-latest | ||
| needs: | ||
| - check-workflows | ||
| - build-lint | ||
| outputs: | ||
| PASSED: ${{ steps.set-output.outputs.PASSED }} | ||
| steps: | ||
| - name: Set PASSED output | ||
| id: set-output | ||
| run: echo "PASSED=true" >> "$GITHUB_OUTPUT" | ||
|
|
||
| all-jobs-pass: | ||
| name: All jobs pass | ||
| if: ${{ always() }} | ||
| runs-on: ubuntu-latest | ||
| needs: all-jobs-completed | ||
| steps: | ||
| - name: Check that all jobs have passed | ||
| run: | | ||
| passed="${{ needs.all-jobs-completed.outputs.PASSED }}" | ||
| if [[ $passed != "true" ]]; then | ||
| exit 1 | ||
| fi | ||
|
|
||
| is-release: | ||
| # Filtering by `push` events ensures that we only release from the `main` branch, which is a | ||
| # requirement for our npm publishing environment. | ||
| # The commit author should always be 'github-actions' for releases created by the | ||
| # 'create-release-pr' workflow, so we filter by that as well to prevent accidentally | ||
| # triggering a release. | ||
| if: github.event_name == 'push' && startsWith(github.event.head_commit.author.name, 'github-actions') | ||
| needs: all-jobs-pass | ||
| outputs: | ||
| IS_RELEASE: ${{ steps.is-release.outputs.IS_RELEASE }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: MetaMask/action-is-release@v1 | ||
| id: is-release | ||
|
|
||
| publish-release: | ||
| needs: is-release | ||
| if: needs.is-release.outputs.IS_RELEASE == 'true' | ||
| name: Publish release | ||
| permissions: | ||
| contents: write | ||
| uses: ./.github/workflows/publish-release.yml | ||
| secrets: | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,29 +1,92 @@ | ||
| name: Publish Release | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [closed] | ||
| workflow_call: | ||
| secrets: | ||
| NPM_TOKEN: | ||
| required: true | ||
| SLACK_WEBHOOK_URL: | ||
| required: true | ||
|
|
||
| jobs: | ||
| publish-release: | ||
| permissions: | ||
| contents: write | ||
| if: | | ||
| github.event.pull_request.merged == true && | ||
| startsWith(github.event.pull_request.head.ref, 'release/') | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| # We check out the release pull request's base branch, which will be | ||
| # used as the base branch for all git operations. | ||
| ref: ${{ github.event.pull_request.base.ref }} | ||
| - name: Get Node.js version | ||
| id: nvm | ||
| run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) | ||
| - uses: actions/setup-node@v2 | ||
| with: | ||
| node-version: ${{ steps.nvm.outputs.NODE_VERSION }} | ||
| - uses: MetaMask/action-publish-release@v1 | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.sha }} | ||
| - name: Install Corepack via Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: '.nvmrc' | ||
| - name: Install Yarn | ||
| run: corepack enable | ||
| - uses: MetaMask/action-publish-release@v3 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| - run: yarn --immutable | ||
| - run: yarn build | ||
| - name: Upload build artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: publish-release-artifacts-${{ github.sha }} | ||
| retention-days: 4 | ||
| include-hidden-files: true | ||
| path: | | ||
| ./dist | ||
Gudahtt marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ./node_modules/.yarn-state.yml | ||
|
|
||
| publish-npm-dry-run: | ||
| needs: publish-release | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.sha }} | ||
| - name: Install Corepack via Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: '.nvmrc' | ||
| - name: Install Yarn | ||
| run: corepack enable | ||
| - name: Restore build artifacts | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: publish-release-artifacts-${{ github.sha }} | ||
| - name: Dry Run Publish | ||
| # omit npm-token token to perform dry run publish | ||
| uses: MetaMask/action-npm-publish@v4 | ||
Gudahtt marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| with: | ||
| slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
| subteam: S042S7RE4AE # @metamask-npm-publishers | ||
| env: | ||
| SKIP_PREPACK: true | ||
|
|
||
| publish-npm: | ||
| needs: publish-npm-dry-run | ||
| runs-on: ubuntu-latest | ||
| environment: npm-publish | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A new |
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.sha }} | ||
| - name: Install Corepack via Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: '.nvmrc' | ||
| - name: Install Yarn | ||
| run: corepack enable | ||
| - name: Restore build artifacts | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: publish-release-artifacts-${{ github.sha }} | ||
| - name: Publish | ||
| uses: MetaMask/action-npm-publish@v2 | ||
Gudahtt marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| with: | ||
| # This `NPM_TOKEN` needs to be manually set per-repository. | ||
| # Look in the repository settings under "Environments", and set this token in the `npm-publish` environment. | ||
| npm-token: ${{ secrets.NPM_TOKEN }} | ||
| env: | ||
| SKIP_PREPACK: true | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was already unused (and not setup in repo settings). Must have been added by mistake.