We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6005e5 commit d7c2b5fCopy full SHA for d7c2b5f
3 files changed
.github/workflows/ci.yml
@@ -8,6 +8,11 @@ on:
8
jobs:
9
release:
10
runs-on: ubuntu-latest
11
+
12
+ permissions:
13
+ contents: read
14
+ id-token: write
15
16
steps:
17
- name: Checkout Code
18
uses: actions/checkout@v4
@@ -24,8 +29,5 @@ jobs:
24
29
- name: Build
25
30
run: npm run build
26
31
27
- - name: Check version and publish
28
- uses: JS-DevTools/npm-publish@v3
- with:
- token: ${{ secrets.NPM_TOKEN }}
- access: public
32
+ - name: Publish to npm
33
+ run: npm publish --access public
0 commit comments