summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-11-23 21:48:50 -0500
committerGitHub <noreply@github.com>2020-11-23 21:48:50 -0500
commitbc27ba3ae81aa0776260dbf7973a1ebf603db38d (patch)
tree6c0fa2440b6a38c5a44710f627ead95fe033af11
parent9c4c91c38054397b342a67327f6e321ad61400bc (diff)
Update deploy.ymladd-releases
-rw-r--r--.github/workflows/deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 15442e306..4f7bd15f0 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -82,15 +82,15 @@ jobs:
target: ${{ matrix.target }}
- name: Setup | musl tools
- if: contains( matrix.target, 'musl' )
+ if: endsWith( matrix.target, 'musl' )
run: sudo apt install -y musl-tools
- name: Build | Build
- if: contains( matrix.target, 'musl' )
+ if: endsWith( matrix.target, 'musl' )
run: cargo build --release --target ${{ matrix.target }}
- name: Build | Build (musl)
- if: contains( matrix.target, 'musl' )
+ if: endsWith( matrix.target, 'musl' )
run: cargo build --release --features tls-vendored --target ${{ matrix.target }}
- name: Post Setup | Prepare artifacts [Windows]