Skip to content

Commit 20e6585

Browse files
committed
Fix typo when detecting builds in trunk
1 parent 4ef51ad commit 20e6585

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/cache-bazel/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ runs:
5050
- run: |
5151
echo '${{ inputs.gcs-key }}' >> gcs.json
5252
echo "build --remote_upload_local_results=true --google_credentials=gcs.json" >> .bazelrc
53-
if: github.ref == 'refs/head/trunk' && runner.os != 'Windows'
53+
if: github.ref == 'refs/heads/trunk' && runner.os != 'Windows'
5454
shell: bash
5555
- run: |
5656
echo ${{ inputs.gcs-key }}>>gcs.json
5757
echo "build --remote_upload_local_results=true --google_credentials=gcs.json">>.bazelrc
58-
if: github.ref == 'refs/head/trunk' && runner.os == 'Windows'
58+
if: github.ref == 'refs/heads/trunk' && runner.os == 'Windows'
5959
shell: cmd

0 commit comments

Comments
 (0)