mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
ci: Properly check if cache was restored
This commit is contained in:
parent
f0ccb6dd43
commit
7e39f613e0
1 changed files with 2 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -73,7 +73,7 @@ jobs:
|
|||
build/libaom
|
||||
key: libaom-${{ matrix.id }}-${{ env.LIBAOM_VERSION }}-${{ secrets.CACHE_VERSION }}
|
||||
- name: "libaom: Install"
|
||||
if: "steps.libaom-cache.outputs.cache-hit != 'true'"
|
||||
if: ${{ steps.libaom-cache.outputs.cache-hit != 'true' }}
|
||||
id: libaom-install
|
||||
shell: bash
|
||||
run: |
|
||||
|
@ -248,7 +248,7 @@ jobs:
|
|||
/usr/local/Cellar/qt@5
|
||||
key: qt-${{ matrix.id }}-${{ env.QT_VERSION }}-${{ secrets.CACHE_VERSION }}
|
||||
- name: "qt: Install"
|
||||
if: "steps.qt-cache.outputs.cache-hit != 'true'"
|
||||
if: ${{ steps.qt-cache.outputs.cache-hit != 'true' }}
|
||||
shell: bash
|
||||
run: |
|
||||
brew install qt@5
|
||||
|
|
Loading…
Reference in a new issue