We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41258f2 commit 7d01563Copy full SHA for 7d01563
.github/workflows/publish.yml
@@ -5,21 +5,23 @@ on:
5
tags:
6
- '*'
7
8
+permissions:
9
+ id-token: write # Required for OIDC
10
+ contents: read
11
+
12
jobs:
13
package:
14
runs-on: ubuntu-latest
15
name: Publish NPM Package
16
17
steps:
18
- name: Cloning repo
- uses: actions/checkout@v3
19
+ uses: actions/checkout@v5
20
- - uses: actions/setup-node@v4
21
+ - uses: actions/setup-node@v5
22
with:
23
node-version: '18.x'
24
registry-url: 'https://registry.npmjs.org'
25
26
- run: npm ci
27
- run: npm run deploy
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments