We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c54c910 + 26c47c9 commit 6c84fa0Copy full SHA for 6c84fa0
.github/workflows/tests.yml
@@ -26,7 +26,11 @@ jobs:
26
- name: Checkout PR commit
27
uses: actions/checkout@v4
28
with:
29
- ref: ${{ github.event.inputs.head_sha || github.sha }}
+ ref: ${{ github.event.inputs.head_sha }}
30
+
31
+ - name: Debug head_sha
32
+ run: echo "head_sha=${{ github.event.inputs.head_sha }}"
33
34
35
- name: Set up Homebrew
36
id: set-up-homebrew
@@ -55,7 +59,7 @@ jobs:
55
59
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
56
60
env:
57
61
HOMEBREW_ARCH: ${{ matrix.arch }}
58
- GITHUB_SHA: ${{ github.event.inputs.head_sha || github.sha }}
62
+ GITHUB_SHA: ${{ github.event.inputs.head_sha }}
63
64
- name: Upload bottles as artifact
65
if: always() && (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch')
0 commit comments