You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ jobs:
18
18
- name: Bump version and push tag
19
19
id: tag_version
20
20
uses: mathieudutour/github-tag-action@v6.1
21
+
with:
22
+
github_token: ${{ secrets.GITHUB_TOKEN }}
21
23
- name: Create a GitHub release
22
24
uses: ncipollo/release-action@v1
23
25
with:
@@ -28,7 +30,7 @@ jobs:
28
30
29
31
### 📥 Inputs
30
32
31
-
- **github_token** _(optional)_ - GitHub token for permission to tag the repo (default:`${{github.token}}`).
33
+
- **github_token** _(required)_ - Required for permission to tag the repo. Usually`${{ secrets.GITHUB_TOKEN }}`.
32
34
- **commit_sha** _(optional)_ - The commit SHA value to add the tag. If specified, it uses this value instead GITHUB_SHA. It could be useful when a previous step merged a branch into github.ref.
0 commit comments