We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7fbb53 commit f5754caCopy full SHA for f5754ca
1 file changed
.github/workflows/build-and-deploy.yml
@@ -5,6 +5,7 @@ on:
5
- v*
6
permissions:
7
contents: write
8
+ id-token: write
9
jobs:
10
build-and-deploy:
11
runs-on: ubuntu-latest
@@ -16,19 +17,16 @@ jobs:
16
17
- name: Use Node.js 😂
18
uses: actions/setup-node@v4
19
with:
- node-version: 18
20
+ node-version: 24
21
+ registry-url: 'https://registry.npmjs.org'
22
23
- name: Install and Build 🔧
24
run: |
25
npm ci
26
npm run build-ci
27
+ npm publish
28
29
- name: Deploy 🚀
30
uses: JamesIves/github-pages-deploy-action@v4
31
32
folder: .
-
- - name: Publish to NPM 📖
- uses: JS-DevTools/npm-publish@v2
33
- with:
34
- token: ${{ secrets.NPM_TOKEN }}
0 commit comments