Skip to content

Commit

Permalink
Fix if quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Jan 25, 2024
1 parent 9f6c43a commit 1172c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@ jobs:
- name: Prepare artifacts
# this is mandatory to preserve execution rights
run: tar --exclude CMakeFiles -cvf tests_${{ matrix.backend.name }}.tar build/
if: matrix.target.name == "native"
if: matrix.target.name == 'native'

- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: tests_${{ matrix.backend.name }}
path: tests_${{ matrix.backend.name }}.tar
if: matrix.target.name == "native"
if: matrix.target.name == 'native'

- name: Install
run: |
Expand Down

0 comments on commit 1172c03

Please sign in to comment.