Skip to content

Commit e075bb0

Browse files
committed
Fix setting of env var
1 parent 7a6f623 commit e075bb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/ccache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ runs:
2626
- name: Export CC/CXX
2727
shell: bash
2828
run: |
29-
export CC=ccache gcc
30-
export CXX=ccache g++
29+
echo "CC=ccache gcc" >> $GITHUB_ENV
30+
echo "CXX=ccache g++" >> $GITHUB_ENV

0 commit comments

Comments
 (0)