Skip to content

Commit

Permalink
update test-action
Browse files Browse the repository at this point in the history
  • Loading branch information
robzr committed Mar 22, 2024
1 parent e87fcd3 commit 0c11608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- run: |
# test sver-equals-true
if [ '${{ steps.sver-equals-true }}' != 'true' ] ; then
if [ '${{ steps.sver-equals-true.outputs.output }}' != 'true' ] ; then
echo '::error title=Action returned invalid response::The action' \
'/action.yaml returned an invalid response' \
'(${{ steps.sver-equals-true.outputs.output }})'
Expand All @@ -76,7 +76,7 @@ jobs:

- run: |
# test sver-equals-false
if [ '${{ steps.sver-equals-true }}' != 'false' ] ; then
if [ '${{ steps.sver-equals-true.outputs.output }}' != 'false' ] ; then
echo '::error title=Action returned invalid response::The action' \
'/action.yaml returned an invalid response' \
'(${{ steps.sver-equals-false.outputs.output }})'
Expand Down

0 comments on commit 0c11608

Please sign in to comment.