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 f257654 commit 14ced36Copy full SHA for 14ced36
.github/workflows/publish.yml
@@ -31,6 +31,8 @@ jobs:
31
steps:
32
- name: Checkout code
33
uses: actions/checkout@v5
34
+ with:
35
+ token: ${{ secrets.GH_PUSH_TOKEN }}
36
37
- name: Set up Node.js
38
uses: actions/setup-node@v6
@@ -52,7 +54,7 @@ jobs:
52
54
run: |
53
55
git config --global user.name "github-actions[bot]"
56
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- TAG=$(npm version ${{ github.event.inputs.bump || 'minor' }} -m "Release %s")
57
+ TAG=$(npm version ${{ github.event.inputs.bump || 'minor' }} -m "Release %s [skip ci]")
58
echo "Created tag: $TAG"
59
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
60
git push origin main --follow-tags
0 commit comments