We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca1b65 commit f04ab61Copy full SHA for f04ab61
.github/workflows/main.yml
@@ -30,7 +30,7 @@ jobs:
30
lfs_limit: 60
31
32
- name: Did we hit the cache?
33
- run: echo "cache-hit was ${{ env.cache-hit }}"
+ run: echo "cache-hit was ${{ steps.cache-conan.outputs.cache-hit }}"
34
35
- name: Get Conan
36
run: |
@@ -42,7 +42,7 @@ jobs:
42
run: echo "/home/runner/.local/bin" >> $GITHUB_PATH
43
44
- name: Put something in the .conan
45
- if: ${{ env.cache-hit == 0 }}
+ if: ${{ steps.cache-conan.outputs.cache-hit == 0 }}
46
run: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
47
48
- name: Print branch
0 commit comments