build: use specific token for pushing release tags

This commit is contained in:
Jakob Borg
2025-05-26 14:13:02 +02:00
parent 98555a9a80
commit cade790198
+4 -2
View File
@@ -13,11 +13,13 @@ jobs:
create-release-tag: create-release-tag:
name: Create release tag name: Create release tag
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: release
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ github.ref }} # https://github.com/actions/checkout/issues/882 ref: ${{ github.ref }} # https://github.com/actions/checkout/issues/882
token: ${{ secrets.STRELEASE_GITHUB_TOKEN }}
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
@@ -45,11 +47,11 @@ jobs:
run: | run: |
go run ./script/relnotes.go --new-ver "$NEXT" --branch "$GITHUB_REF_NAME" --prev-ver "$PREV" > notes.md go run ./script/relnotes.go --new-ver "$NEXT" --branch "$GITHUB_REF_NAME" --prev-ver "$PREV" > notes.md
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.STRELEASE_GITHUB_TOKEN }}
- name: Create and push tag - name: Create and push tag
run: | run: |
git config --global user.name 'Syncthing Release Automation' git config --global user.name 'Syncthing Release Automation'
git config --global user.email 'release@syncthing.net' git config --global user.email 'release@syncthing.net'
git tag -a -F notes.md "$NEXT" git tag -a -F notes.md --cleanup=whitespace "$NEXT"
git push origin "$NEXT" git push origin "$NEXT"