Skip to content

Commit

Permalink
Fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenraven committed Jul 12, 2022
1 parent 606aded commit ef3ef36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
path: build/distributions/*

- name: Tar failed build
if: failed()
if: ${{ failure() }}
run: tar -cvf failed_build.tar ./*

- name: Upload failed build
uses: actions/upload-artifact@v3
if: failed()
if: ${{ failure() }}
with:
name: failed-build
path: failed_build.tar
Expand Down

0 comments on commit ef3ef36

Please sign in to comment.