Skip to content

Commit

Permalink
fix: pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
cyaiox committed Dec 18, 2024
1 parent b4bab17 commit 4eb7a29
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
node-version: 20
cache: 'npm'
- name: install
run: npm install
- name: build
Expand All @@ -29,6 +29,8 @@ jobs:
with:
registry-url: "https://registry.npmjs.org"
access: public
## sign the deployment
provenance: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

Expand All @@ -37,10 +39,10 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
node-version: 20
cache: 'npm'
- name: install
run: npm install
- name: build
Expand Down

0 comments on commit 4eb7a29

Please sign in to comment.