CI: Remove dry-run flag

This was temporary whilst setting up auto-publish
This commit is contained in:
Lovell Fuller 2025-09-15 11:18:00 +01:00
parent 905f69837e
commit b507831a11

View File

@ -330,7 +330,7 @@ jobs:
bodyFile: release-notes.md
- name: Publish platform-specific npm packages
if: startsWith(github.ref, 'refs/tags/v')
run: cd npm && npm publish --workspaces --tag=${{ contains(github.ref, '-rc') && 'next' || 'latest' }} --dry-run
run: cd npm && npm publish --workspaces --tag=${{ contains(github.ref, '-rc') && 'next' || 'latest' }}
- name: Publish sharp npm package
if: startsWith(github.ref, 'refs/tags/v')
run: npm publish --tag=${{ contains(github.ref, '-rc') && 'next' || 'latest' }} --dry-run
run: npm publish --tag=${{ contains(github.ref, '-rc') && 'next' || 'latest' }}