Skip to content

Commit

Permalink
πŸ› Fix(github actions): change versions of chekout and setup node
Browse files Browse the repository at this point in the history
  • Loading branch information
INeedJobToStartWork committed Mar 5, 2024
1 parent 9a2f796 commit 9a1a76f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
id-token: write
steps:
- name: πŸ“š Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🟒 Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "^20"
registry-url: "https://registry.npmjs.org"
Expand All @@ -25,8 +25,8 @@ jobs:
run: pnpm build:npm
- name: πŸ“¦ Publish to npm
working-directory: ./dist
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm publish --access public --provenance

0 comments on commit 9a1a76f

Please sign in to comment.