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 2161f33 commit fa8c77bCopy full SHA for fa8c77b
1 file changed
.github/workflows/release.yml
@@ -4,6 +4,11 @@ on:
4
push:
5
tags:
6
- 'v*'
7
+ -
8
+
9
+permissions:
10
+ id-token: write # Required for OIDC
11
+ contents: read
12
13
jobs:
14
goreleaser:
@@ -19,9 +24,14 @@ jobs:
19
24
with:
20
25
go-version: 1.25.x
21
26
22
- - name: npm-login
23
- run: |
- npm config set '//registry.npmjs.org/:_authToken'=${{ secrets.NPM_TOKEN }}
27
+ - uses: actions/setup-node@v4
28
+ with:
29
+ node-version: '24'
30
+ registry-url: 'https://registry.npmjs.org'
31
32
+ - name: Update npm
33
+ run: npm install -g npm@latest
34
35
- name: Install Task
36
uses: go-task/setup-task@v1
37
0 commit comments