We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d089847 commit 19be042Copy full SHA for 19be042
1 file changed
.github/workflows/publish.yml
@@ -25,14 +25,14 @@ jobs:
25
26
- name: Pull bottles
27
env:
28
- HOMEBREW_GITHUB_API_TOKEN: ${{ github.token }}
29
- HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }}
+ HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.PAT }}
+ HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ secrets.PAT }}
30
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }}
31
PULL_REQUEST: ${{ github.event.pull_request.number }}
32
run: export HOMEBREW_NO_INSTALL_FROM_API=1 ; brew pr-pull --debug --workflows=tests-arm.yml --tap=$GITHUB_REPOSITORY $PULL_REQUEST
33
34
- name: Push commits
35
uses: Homebrew/actions/git-try-push@master
36
with:
37
- token: ${{ github.token }}
+ token: ${{ secrets.PAT }}
38
branch: ${{ github.event.pull_request.head.ref }}
0 commit comments