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 3e21c5a commit f7f054cCopy full SHA for f7f054c
.github/workflows/release.yml
@@ -7,24 +7,21 @@ on:
7
8
jobs:
9
release:
10
- name: Release / Node ${{ matrix.node }}
11
- strategy:
12
- matrix:
13
- node: ['18']
14
-
+ name: Release / Node 18
15
runs-on: ubuntu-latest
16
+ permissions:
+ id-token: write
17
steps:
18
- uses: actions/checkout@v2
19
20
- name: Set up Node
21
uses: actions/setup-node@v2
22
with:
23
- node-version: ${{ matrix.node }}
+ node-version: 18
24
registry-url: https://registry.npmjs.org
25
- run: |
26
npm ci
27
npm run build
28
- - run: npm publish --public
+ - run: npm publish --provenance --access public
29
env:
30
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments