Skip to content

Commit f1cafd4

Browse files
authored
build: set up separate publish jobs (#1887)
1 parent 3bd943d commit f1cafd4

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/release.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,22 @@ jobs:
1515
with:
1616
node-version: "18.x"
1717
registry-url: "https://registry.npmjs.org"
18-
- name: Publish package
18+
- name: Build
19+
run: |
20+
npm install --force
21+
npm run build:docs & npm run build:lib
22+
- name: Publish package (stable)
23+
if: ${{ ! contains(github.ref, '-next') }}
1924
env:
2025
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
2126

2227
# Currently, only npm supports publishing packages with provenance
2328
# https://docs.npmjs.com/generating-provenance-statements
2429
run: |
25-
npm install --force
26-
npm run build:docs & npm run build:lib
2730
npm publish --provenance --access public
31+
- name: Publish package (next)
32+
if: ${{ contains(github.ref, '-next') }}
33+
env:
34+
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
35+
run: |
36+
npm publish --provenance --access public --tag next

0 commit comments

Comments
 (0)