We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a03af9 commit 20d8f8cCopy full SHA for 20d8f8c
2 files changed
.github/workflows/publish.yml
@@ -44,6 +44,6 @@ jobs:
44
run: pnpm test
45
46
- name: Publish package
47
- run: npm publish --provenance
+ run: npm publish --provenance --access public
48
env:
49
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.github/workflows/tag-release.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Create and push tag for release commits
21
run: |
22
MESSAGE="${{ github.event.head_commit.message }}"
23
- if [[ "$MESSAGE" != chore\(release\):\ v* ]]; then
+ if [[ ! "$MESSAGE" =~ ^chore\(release\):\ v ]]; then
24
echo "Not a release commit; skipping"
25
exit 0
26
fi
0 commit comments