We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49c6a30 commit e3937e2Copy full SHA for e3937e2
1 file changed
.github/workflows/publishing.yml
@@ -1,25 +1,21 @@
1
name: Publish
2
on:
3
- release:
4
- types: [ published ]
+ release:
+ types: [ published ]
5
6
jobs:
7
publish:
8
name: Publish latest release
9
runs-on: ubuntu-latest
10
permissions:
11
- contents: read
12
id-token: write
13
- strategy:
14
- matrix:
15
- node: [24.x]
+ contents: read
16
steps:
17
- uses: actions/checkout@v6
18
- - name: Setup Node.js ${{ matrix.node-version }}
+ - name: Setup Node.js
19
uses: actions/setup-node@v6
20
with:
21
- node-version: ${{ matrix.node-version }}
22
- cache: npm
+ node-version: '24'
23
registry-url: 'https://registry.npmjs.org'
24
- name: Install dependencies
25
run: npm ci
0 commit comments