File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,22 @@ jobs:
15
15
with :
16
16
node-version : " 18.x"
17
17
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') }}
19
24
env :
20
25
NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
21
26
22
27
# Currently, only npm supports publishing packages with provenance
23
28
# https://docs.npmjs.com/generating-provenance-statements
24
29
run : |
25
- npm install --force
26
- npm run build:docs & npm run build:lib
27
30
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
You can’t perform that action at this time.
0 commit comments