Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vaguue authored Nov 12, 2023
1 parent 1aa8fe9 commit 1f6f950
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,12 @@ jobs:
cat output.txt | grep -F "[*] ok"
isOk=$(cat output.txt | grep -F "[*] ok")
echo isOk: $isOk
[ -z "$isOk" ] && echo check failed
[ -z "$isOk" ] && exit 1
if [[ -z "$isOk" ]]; then
echo check failed
exit 1
else
echo check succeded
fi
shell: bash
- name: Upload
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 1f6f950

Please sign in to comment.