We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b04deb commit fec5d96Copy full SHA for fec5d96
.github/workflows/publish-radfish.yml
@@ -92,7 +92,11 @@ jobs:
92
id: npm-publish
93
run: |
94
set -e
95
- npm publish
+ if [[ "${{ inputs.prerelease }}" == "true" ]]; then
96
+ npm publish --tag beta
97
+ else
98
+ npm publish
99
+ fi
100
working-directory: packages/radfish
101
env:
102
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.github/workflows/publish-react-radfish.yml
@@ -98,7 +98,11 @@ jobs:
103
104
105
106
working-directory: packages/react-radfish
107
108
0 commit comments