-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 979 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
38
name: Publish
on:
push:
branches:
- 'main'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm install --frozen-lockfile
working-directory: ./packages/react
- run: npm run build
working-directory: ./packages/react
- name: Create Release Pull Request
id: changesets
uses: changesets/action@v1
with:
publish: false # Only create the release PR, no publishing
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to npm
if: steps.changesets.outputs.published == 'true' # Ensure it only runs when a publish is required
run: npm publish
working-directory: ./packages/react
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}