Skip to content

Commit 8bc4a6c

Browse files
authored
Merge pull request #6 from Bandwidth/v1.0.0-beta.2
remove dry-run
2 parents b7d203b + fcdb5ef commit 8bc4a6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ jobs:
107107
- name: Before deploy
108108
run: npm ci && npm run declarations
109109

110-
- name: Publish npm Package #TODO: remove dry-run when ready
110+
- name: Publish npm Package
111111
run: |
112112
npm version $RELEASE_VERSION --no-git-tag-version
113-
npm publish --access public --dry-run
113+
npm publish --access public
114114
env:
115115
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
116116

@@ -170,9 +170,9 @@ jobs:
170170
- name: Before deploy
171171
run: npm ci && npm run declarations
172172

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

0 commit comments

Comments
 (0)