Skip to content

Commit 6afaf8b

Browse files
l46kokcopybara-github
authored andcommitted
Fix Github Action workflow
Supercedes #957 PiperOrigin-RevId: 874711556
1 parent 4cf2b79 commit 6afaf8b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
2323
- run: echo "🐧 Job is running on a ${{ runner.os }} server!"
24-
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
24+
- run: echo "🔎 The name of your branch is ${GITHUB_REF} and your repository is ${{ github.repository }}."
2525
- name: Check out repository code
2626
uses: actions/checkout@v6
2727
- name: Setup Bazel
@@ -121,4 +121,6 @@ jobs:
121121
- name: Run Conformance Maven Test on Version Change
122122
if: steps.changed_file.outputs.any_changed == 'true'
123123
run: bazelisk test //conformance/src/test/java/dev/cel/conformance:conformance_maven --test_output=errors
124-
- run: echo "🍏 This job's status is ${{ job.status }}."
124+
- run: echo "🍏 This job's status is ${JOB_STATUS}."
125+
env:
126+
JOB_STATUS: ${{ job.status }}

0 commit comments

Comments
 (0)