Skip to content

Commit bfa09bd

Browse files
committed
chore: prevent github token name collision
1 parent bf1e7e3 commit bfa09bd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/workflows.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ on:
3636
pip-extra-index-url:
3737
description: 'The PIP_EXTRA_INDEX_URL for private pip packages'
3838
required: true
39-
GITHUB_TOKEN: # Add this secret
39+
REPO_TOKEN: # Add this secret
4040
description: 'GitHub token for PR comments'
4141
required: false
4242
outputs:
@@ -70,7 +70,7 @@ jobs:
7070
dockerfile: ${{ inputs.dockerfile }}
7171
platforms: 'linux/amd64'
7272
tag-prefix: 'amd64-'
73-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
7474

7575

7676
docker-arm64:
@@ -98,7 +98,7 @@ jobs:
9898
dockerfile: ${{ inputs.dockerfile }}
9999
platforms: 'linux/arm64'
100100
tag-prefix: 'arm64-'
101-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101+
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
102102

103103
docker-manifest:
104104
needs: [docker-amd64, docker-arm64]

0 commit comments

Comments
 (0)