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 1473d4b commit 8863a58Copy full SHA for 8863a58
.github/workflows/publish.yml
@@ -23,12 +23,15 @@ on:
23
- "**"
24
workflow_dispatch:
25
26
+permissions:
27
+ id-token: write # for publishing to npm
28
+ contents: read
29
+
30
jobs:
- # Run tests using node, publish a package when tagged
31
# https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
32
33
publish-npm:
- runs-on: ubuntu-22.04
34
+ runs-on: ubuntu-24.04
35
steps:
36
- uses: actions/checkout@v5
37
- uses: actions/setup-node@v5
@@ -38,11 +41,9 @@ jobs:
38
41
- run: npm ci
39
42
- run: npm publish
40
43
if: startsWith(github.ref, 'refs/tags/')
- env:
- NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
44
45
publish-docker:
46
47
48
49
0 commit comments