From b3bf0f39900ea50c0e5a0e18779e71af868fe7d6 Mon Sep 17 00:00:00 2001 From: Aneesh Relan Date: Tue, 5 Oct 2021 23:22:25 +0530 Subject: [PATCH] fix: remove dry run --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff37a530..7848e6ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,13 +16,13 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: npm install # Publish to npm - - run: npm publish --dry-run + - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - uses: actions/setup-node@v2 with: registry-url: 'https://npm.pkg.github.com' # Publish to GitHub Packages - - run: npm publish --dry-run + - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file