Skip to content

Commit

Permalink
chore: npm run
Browse files Browse the repository at this point in the history
  • Loading branch information
hyduez committed Apr 6, 2023
1 parent e6690a4 commit 6aad699
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
node-version: 16
- run: npm install
- run: npm build
- run: npm run build

publish-gpr:
needs: build
Expand All @@ -31,7 +31,7 @@ jobs:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm install
- run: npm build
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions .github/workflows/npm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
node-version: 16
- run: npm install
- run: npm build
- run: npm run build

publish-npm:
needs: build
Expand All @@ -28,7 +28,7 @@ jobs:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm
- run: npm build
- run: npm run build
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit 6aad699

Please sign in to comment.