fix: Changeset release workflow #5
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
pnpm-version: [8] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
submodules: true | |
- name: Set up pnpm action ${{ matrix.pnpm-version }} | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ${{ matrix.pnpm-version }} | |
- name: Set up Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: NODE_ENV=development pnpm install --lockfile-only | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
title: 'chore(changeset): Bump package version' | |
commit: 'chore(changeset): Bump package version' | |
version: pnpm run changeset:version | |
publish: pnpm run changeset:publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.CHANGESETS_PAT }} |