Merge pull request #40 from api3dao/dependabot/npm_and_yarn/follow-re… #1
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: Release | |
on: | |
push: | |
branches: | |
- production | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Ensure main is present for the commit message preparation | |
run: | | |
git checkout main | |
git checkout production | |
- name: Prepare for the commit message | |
run: | | |
echo "NEW_VERSION=$(pnpm changeset status --output=release.json > /dev/null && jq -r '.releases[0].newVersion' release.json && rm release.json)" >> "$GITHUB_ENV" | |
- name: Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: pnpm changeset:version | |
publish: pnpm changeset publish | |
title: 'Release v${{ env.NEW_VERSION }}' | |
commit: 'Release v${{ env.NEW_VERSION }}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Create PR to merge production to main | |
if: steps.changesets.outputs.published == 'true' | |
run: gh pr create -B main -H production --title 'Merge production to main' --reviewer bbenligiray | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |