-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (33 loc) · 911 Bytes
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Publish
on:
workflow_run:
workflows: [CI]
branches: [main]
types: [completed]
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
publish:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: 8.15.6
- uses: actions/[email protected]
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
# - run: cp -f README.md dist/
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/[email protected]
with:
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}