Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karpikpl committed Apr 4, 2024
1 parent c29fa1a commit b57def7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@ jobs:

- name: Print Output
id: output
run: echo "result: ${{ steps.test-action.outputs.result }}"
run: |
echo "result: ${{ steps.test-action.outputs.result }}"
# throw an error if the result is not success
if [ "${{ steps.test-action.outputs.result }}" != "Success" ]; then
exit 1
fi

0 comments on commit b57def7

Please sign in to comment.