We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9a99d commit 82c51a3Copy full SHA for 82c51a3
1 file changed
.github/workflows/main.yml
@@ -60,14 +60,14 @@ jobs:
60
run: grunt
61
- name: Deploy (release)
62
if: github.event_name == 'release'
63
- run: npm publish --dry-run
+ run: npm publish
64
env:
65
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
66
- name: Deploy (release candidate)
67
if: github.event_name == 'push'
68
run: |
69
npm --no-git-tag-version version prerelease
70
- npm publish --tag next --dry-run
+ npm publish --tag next
71
72
73
deploy_npm:
@@ -87,7 +87,7 @@ jobs:
87
- name: Run linting, tests, minify
88
89
- name: Deploy
90
- if: github.event_name == 'push'
91
+ if: github.event_name == 'release'
92
93
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments