Skip to content

Commit

Permalink
check target properly in if expression for strip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmoore17 committed Mar 30, 2021
1 parent 0db4dc4 commit 5096be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
args: --release --target ${{ matrix.platform.target }}

- name: Install strip command
if: ${{ matrix.platform.target }} == aarch64-unknown-linux-gnu
if: ${{ matrix.platform.target == 'aarch64-unknown-linux-gnu' }}
shell: bash
run: |
sudo apt update
Expand Down

0 comments on commit 5096be9

Please sign in to comment.