Skip to content

Commit 2299c71

Browse files
committed
fix: pass github token to tag action
Use the correct github_token input for mathieudutour/github-tag-action so the GitHub App installation token is passed through instead of being ignored.
1 parent 74b80ff commit 2299c71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: mathieudutour/github-tag-action@a22cf08638b34d5badda920f9daf6e72c477b07b
7171
with:
7272
custom_tag: "${{ steps.normalize_release_tag.outputs.tag }}"
73-
token: "${{ steps.release_app_token.outputs.token }}"
73+
github_token: "${{ steps.release_app_token.outputs.token }}"
7474
- env:
7575
GITHUB_REPO: "${{ github.repository }}"
7676
OUTPUT: CHANGELOG.md

cinzel/steps.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ step "tag_version" {
113113
}
114114

115115
with {
116-
name = "token"
116+
name = "github_token"
117117
value = "$${{ steps.release_app_token.outputs.token }}"
118118
}
119119

0 commit comments

Comments
 (0)