-
-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 }} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,73 @@ | ||
| 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 }} | ||
|
|
||
| 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: Dry Run Publish | ||
| # omit npm-token token to perform dry run publish | ||
| uses: MetaMask/action-npm-publish@v5 | ||
| 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: Publish | ||
| uses: MetaMask/action-npm-publish@v5 | ||
| 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.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |||||
| "demo": "node demo/build.js", | ||||||
| "demo:all": "yarn demo --all", | ||||||
| "lint": "yarn lint:eslint && yarn lint:misc --check", | ||||||
|
Contributor
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. Worth adding
Suggested change
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. Ah right, I meant to comment on this. I considered this change, but I noticed the changelog lint is run redundantly in our workflows now in the module template. It's run once as part of |
||||||
| "lint:changelog": "auto-changelog validate", | ||||||
| "lint:eslint": "eslint . --cache --ext js,ts", | ||||||
| "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write", | ||||||
| "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore" | ||||||
|
|
||||||
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.