We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354e3f2 commit 19a2ea7Copy full SHA for 19a2ea7
.github/workflows/release-to-homebrew.yml
@@ -29,7 +29,9 @@ jobs:
29
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
30
env:
31
GH_TOKEN: ${{ steps.app-token.outputs.token }}
32
- - run: |
+ - name: Set git user
33
+ if: github.event_name != 'workflow_dispatch'
34
+ run: |
35
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
36
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com'
37
@@ -50,3 +52,4 @@ jobs:
50
52
with:
51
53
formula-name: t-rec
54
tag-name: v${{ env.RELEASE_VERSION }}
55
+ push-to: sassman/homebrew-core
0 commit comments