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 6688f9a commit ae03713Copy full SHA for ae03713
.github/workflows/release.yml
@@ -29,7 +29,12 @@ jobs:
29
run: pnpm moon run :build
30
31
- name: Publish the libraries
32
- run: pnpm publish -r --access=public --no-git-checks
+ run: |
33
+ if [[ "${{ github.ref }}" == *"-alpha"* ]]; then
34
+ pnpm publish -r --access=public --no-git-checks --tag=alpha
35
+ else
36
+ pnpm publish -r --access=public --no-git-checks
37
+ fi
38
env:
39
NPM_CONFIG_PROVENANCE: true
40
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments