Skip to content

Commit ea85c3d

Browse files
authored
Switch to using built-in secrets.GITHUB_TOKEN for tagging releases (#12)
1 parent 8de38a7 commit ea85c3d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/tag-changes.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ jobs:
1212
uses: actions/checkout@v2
1313
with:
1414
fetch-depth: 0
15-
- name: Generate Token
16-
uses: tibdex/github-app-token@v1
17-
id: generate-token
18-
with:
19-
app_id: ${{ secrets.APP_ID }}
20-
private_key: ${{ secrets.APP_PRIVATE_KEY }}
2115
- name: Check for changes # checks if there are changes since the last tag
2216
id: check-changes
2317
run: |
@@ -38,6 +32,6 @@ jobs:
3832
- uses: mathieudutour/[email protected]
3933
if: steps.check-changes.outputs.version != ''
4034
with:
41-
github_token: ${{ steps.generate-token.outputs.token }}
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
4236
custom_tag: '${{ steps.bump-semver.outputs.new_version }}'
4337
release_branches: 'main'

0 commit comments

Comments
 (0)