Skip to content

Commit 17c49e3

Browse files
committed
GitHub Actions fixes 4
1 parent b19b007 commit 17c49e3

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/publishPackage.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,7 @@ jobs:
5858
path: typings
5959

6060
- name: Publish on NPM
61-
uses: JS-DevTools/npm-publish@v1
62-
with:
63-
access: public
64-
registry: https://registry.npmjs.org/
65-
token: ${{ secrets.NPM_TOKEN }}
66-
check-version: false
61+
run: npm publish --access=public --registry=https://registry.npmjs.org --token=${{ secrets.NPM_TOKEN }}
6762

68-
- name: Publish on GitHub Packages
69-
uses: JS-DevTools/npm-publish@v1
70-
with:
71-
access: public
72-
registry: https://npm.pkg.github.com/
73-
token: ${{ secrets.GITHUB_TOKEN }}
74-
check-version: false
63+
- name: Publish on NPM
64+
run: npm publish --access=public --registry=https://npm.pkg.github.com --token=${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)