Skip to content

Commit 82c51a3

Browse files
committed
Remove dry run from publish
1 parent 8b9a99d commit 82c51a3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ jobs:
6060
run: grunt
6161
- name: Deploy (release)
6262
if: github.event_name == 'release'
63-
run: npm publish --dry-run
63+
run: npm publish
6464
env:
6565
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
6666
- name: Deploy (release candidate)
6767
if: github.event_name == 'push'
6868
run: |
6969
npm --no-git-tag-version version prerelease
70-
npm publish --tag next --dry-run
70+
npm publish --tag next
7171
env:
7272
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
7373
deploy_npm:
@@ -87,7 +87,7 @@ jobs:
8787
- name: Run linting, tests, minify
8888
run: grunt
8989
- name: Deploy
90-
if: github.event_name == 'push'
91-
run: npm publish --dry-run
90+
if: github.event_name == 'release'
91+
run: npm publish
9292
env:
9393
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 commit comments

Comments
 (0)