Skip to content

Commit

Permalink
Check true
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Feb 22, 2024
1 parent a955a64 commit c0c91ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ runs:
restore-keys: |
ci-${{ runner.os }}-${{matrix.name || matrix.language }}-
ci-${{ runner.os }}-
if: inputs.use_ccache && (runner.os == 'macOS' || runner.os == 'Linux')
if: inputs.use_ccache == true && (runner.os == 'macOS' || runner.os == 'Linux')

- name: Configure ccache path
run: |
echo "/usr/lib/ccache" >> $GITHUB_PATH
echo "/usr/local/opt/ccache/libexec" >> $GITHUB_PATH
echo "/opt/homebrew/opt/ccache/libexec" >> $GITHUB_PATH
shell: bash
if: inputs.use_ccache && (runner.os == 'macOS' || runner.os == 'Linux')
if: inputs.use_ccache == true && (runner.os == 'macOS' || runner.os == 'Linux')

# - name: Setup Windows Cache
# uses: actions/cache@v4
Expand Down

0 comments on commit c0c91ad

Please sign in to comment.