mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Updated CI release workflow to use built-in token
no issue - `RELEASE_TOKEN` is currently a GitHub personal token, but this has some downsides: - if the token ever expires and I'm unaware, it'll break the release process - GitHub Releases say the creator was `daniellockyer` even if someone else actually did the release - this commit switches over to using the built-in `GITHUB_TOKEN`, which is owned by the `github-actions` app and should never expire - aside from that, Ghost releases will be created by the neutral `github-actions` account
This commit is contained in:
parent
beccb65989
commit
a8ee33b533
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
|||
automate:
|
||||
runs-on: ubuntu-18.04
|
||||
env:
|
||||
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||
RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
FORCE_COLOR: 1
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue