Skip to content

Commit 4878c7b

Browse files
committed
Remove --dry-run from npm publish commands
1 parent dd68a75 commit 4878c7b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/create-tag.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,5 @@ jobs:
5151
git config --global user.email "github-actions[bot]@users.noreply.github.com"
5252
npm version ${{ github.event.inputs.bump || 'minor' }} -m "Release %s"
5353
54-
- name: Dry run publishing to npm
55-
run: npm publish --dry-run --provenance --access=public
56-
5754
- name: Push to GitHub
5855
run: git push origin main --follow-tags

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
registry-url: 'https://registry.npmjs.org'
2525

2626
- name: Publish to npm
27-
run: npm publish --dry-run --provenance --access=public
27+
run: npm publish --provenance --access=public
2828

2929
- name: Create GitHub Release
3030
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)