Skip to content

Commit

Permalink
fix: yaml issue with key
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Aug 10, 2024
1 parent 1f0efd1 commit 2e1f4b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
id: libcxx_with_modules
with:
path: /tmp/llvm-project/build
key: libcxx-${{ env.LLVM_VERSION }}
key: 'libcxx-${{ env.LLVM_VERSION }}'
- name: compiling libcxx ${{ env.LLVM_VERSION }} with modules
if: steps.libcxx_with_modules.outputs.cache-hit != 'true'
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/cache/restore@v4
with:
path: /tmp/llvm-project/build
key: libcxx-${{ env.LLVM_VERSION }}
key: 'libcxx-${{ env.LLVM_VERSION }}'
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 2e1f4b1

Please sign in to comment.