v2.2.0 #16
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: Upload changesets | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
upload-changesets: | |
name: Upload changesets | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.release.tag_name }} | |
- name: 'Install pnpm' | |
uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 | |
with: | |
version: 9 | |
run_install: true | |
- name: Upload an Asset in GitHub Release | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const script = require('./scripts/uploadChangesets.cjs') | |
script({github, context, token: '${{ secrets.GITHUB_TOKEN }}'}) | |
cleanup-changesets: | |
runs-on: ubuntu-latest | |
needs: upload-changesets | |
environment: production | |
steps: | |
- name: 'Get token for the GitHub App' | |
if: ${{ vars.APP_ID != '' }} | |
uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c | |
id: app-token | |
with: | |
app-id: ${{ vars.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }} | |
- name: Remove changesets zip files | |
run: rm .changeset/changesets-*.zip | |
- name: Commit changes | |
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 | |
with: | |
add: '.' | |
github_token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }} | |
message: 'chore(skip-ci): remove changesets zip files' |