We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2a0933 + bc2ce0e commit cc117f8Copy full SHA for cc117f8
1 file changed
.github/workflows/release.yml
@@ -35,4 +35,9 @@ jobs:
35
run: npm run build
36
37
- name: Publish to npm with OIDC
38
- run: npm publish --provenance
+ run: |
39
+ if [[ $GITHUB_REF == refs/tags/*-rc* ]]; then
40
+ npm publish --provenance --tag next
41
+ else
42
+ npm publish --provenance
43
+ fi
0 commit comments