From b507831a1191175b83e1f3fa52ad4cd56686a6a5 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Mon, 15 Sep 2025 11:18:00 +0100 Subject: [PATCH] CI: Remove dry-run flag This was temporary whilst setting up auto-publish --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 931139b3..1f126419 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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' }}