We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f1b1b commit d840484Copy full SHA for d840484
.github/workflows/publish.yml
@@ -2,7 +2,7 @@ name: Publish Package to npmjs
2
3
on:
4
release:
5
- types: [published]
+ types: [ published ]
6
push:
7
branches: [ main ]
8
workflow_dispatch:
@@ -32,6 +32,7 @@ jobs:
32
pv=$(jq -r .version package.json)
33
rv=$(curl -s https://registry.npmjs.org/$(jq -r .name package.json) | jq -r '."dist-tags".latest')
34
[ "$pv" = "$rv" ] && exit 0
35
+ npm install
36
npm ci
37
npm run build
38
- run: npm publish --provenance --access public
0 commit comments