Browse Source

[BRE-1150] Wrapping in quotes

BRE-1150-create-workflows-to-release-updated-rust-sm-action
Andy Pixley 3 months ago
parent
commit
0e1775d4de
No known key found for this signature in database
GPG Key ID: 4025C92FEDF5ED81
  1. 4
      .github/workflows/test-version-check.yml

4
.github/workflows/test-version-check.yml

@ -97,7 +97,7 @@ jobs: @@ -97,7 +97,7 @@ jobs:
- name: Verify expected failures
if: ${{ matrix.type != '' && matrix.should-fail == true }}
run: |
if [ ${{ steps.version-check.outcome }} != "failure" ]; then
if [ "${{ steps.version-check.outcome }}" != "failure" ]; then
echo "Action was expected to fail but did not."
exit 1
fi
@ -113,7 +113,7 @@ jobs: @@ -113,7 +113,7 @@ jobs:
- name: Verify expected failures - default type
if: ${{ matrix.type == '' && matrix.should-fail == true }}
run: |
if [ ${{ steps.version-check-default-type.outcome }} != "failure" ]; then
if [ "${{ steps.version-check-default-type.outcome }}" != "failure" ]; then
echo "Action was expected to fail but did not."
exit 1
fi

Loading…
Cancel
Save