Skip to content

Commit

Permalink
Merge pull request #6 from Bandwidth/v1.0.0-beta.2
Browse files Browse the repository at this point in the history
remove dry-run
  • Loading branch information
ckoegel authored Nov 10, 2022
2 parents b7d203b + fcdb5ef commit 8bc4a6c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ jobs:
- name: Before deploy
run: npm ci && npm run declarations

- name: Publish npm Package #TODO: remove dry-run when ready
- name: Publish npm Package
run: |
npm version $RELEASE_VERSION --no-git-tag-version
npm publish --access public --dry-run
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

Expand Down Expand Up @@ -170,9 +170,9 @@ jobs:
- name: Before deploy
run: npm ci && npm run declarations

- name: Publish npm Package #TODO: remove dry-run when ready
- name: Publish npm Package
run: |
npm version $RELEASE_VERSION --no-git-tag-version
npm publish --access public --tag beta --dry-run
npm publish --access public --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit 8bc4a6c

Please sign in to comment.