Skip to content

Commit

Permalink
fix: remove dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
aneeshrelan committed Oct 5, 2021
1 parent 8426bf8 commit b3bf0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -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 }}

0 comments on commit b3bf0f3

Please sign in to comment.