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 eba1c5a commit ed5452cCopy full SHA for ed5452c
1 file changed
.github/workflows/publish.yml
@@ -4,6 +4,9 @@ on:
4
#release:
5
# types: [published]
6
workflow_dispatch:
7
+
8
+permissions: {}
9
10
jobs:
11
publish:
12
runs-on: ubuntu-latest
@@ -12,13 +15,13 @@ jobs:
15
contents: read
13
16
steps:
14
17
- uses: actions/checkout@v4
18
+ with:
19
+ persist-credentials: false
20
- uses: actions/setup-node@v4
21
with:
- node-version: '22.x'
22
+ node-version: '24.x'
23
registry-url: 'https://registry.npmjs.org'
24
cache: 'yarn'
25
- run: yarn install --frozen-lockfile
26
- run: yarn test
27
- run: npm publish --access public --provenance
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
0 commit comments