Skip to content

Commit d3cf668

Browse files
committed
fix: replace user PAT with bot PAT
Signed-off-by: Taylor Price <[email protected]>
1 parent 5d7cde6 commit d3cf668

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
args: release --clean --snapshot
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40-
GH_PROJECT_TOKEN: ${{ secrets.GH_PROJECT_TOKEN }}
40+
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}
4141
- name: Upload to S3
4242
uses: jakejarvis/[email protected]
4343
env:

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
args: release --clean
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41-
GH_PROJECT_TOKEN: ${{ secrets.GH_PROJECT_TOKEN }}
41+
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}
4242
GORELEASER_CURRENT_TAG: ${{ github.ref_name }}
4343
homebrew-release:
4444
needs: release-tag

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ brews:
6464
repository:
6565
owner: gptscript-ai
6666
name: homebrew-tap
67-
token: "{{ .Env.GH_PROJECT_TOKEN }}"
67+
token: "{{ .Env.TAP_GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)