Only show packages in the dry run that need publishing #67
Workflow file for this run
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
name: Publish Release | |
on: | |
pull_request: | |
types: [closed] | |
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@v3 | |
with: | |
# This is to guarantee that the most recent tag is fetched, | |
# which we need for updating the shorthand major version tag. | |
fetch-depth: 0 | |
# 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: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- uses: MetaMask/action-publish-release@v2 | |
id: publish-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update shorthand major version tag | |
run: | | |
./.github/workflows/scripts/update-major-version-tag.sh \ | |
${{ steps.publish-release.outputs.release-version }} |