Skip to content

Commit

Permalink
Check for bool
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Jul 4, 2021
1 parent 01fe49f commit 62dffe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
run: cargo run --package prerelease -- --reference ${{ github.ref }}

- name: Test Install Script With Explicit Target
if: matrix.os != 'windows-2016' && steps.is_prerelease.outputs.value
if: matrix.os != 'windows-2016' && steps.is_prerelease.outputs.value == 'true'
run: |
cd `mktemp -d`
cat $GITHUB_WORKSPACE/docs/install.sh | bash -s -- --target ${{ matrix.target }} --to .
Expand All @@ -137,7 +137,7 @@ jobs:
fi
- name: Test Install Script Without Explicit Target
if: matrix.os != 'windows-2016' && steps.is_prerelease.outputs.value
if: matrix.os != 'windows-2016' && steps.is_prerelease.outputs.value == 'true'
run: |
cd `mktemp -d`
cat $GITHUB_WORKSPACE/docs/install.sh | bash -s -- --to .
Expand Down

0 comments on commit 62dffe7

Please sign in to comment.