summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2021-01-12 18:40:38 +0100
committerGitHub <noreply@github.com>2021-01-12 12:40:38 -0500
commit8e775c4bd789956a216dcb95c00c0f19011d62c4 (patch)
tree304d09b699eb0b039979c50ec3942fb26eed92c2 /.github
parentf72dc2b9cfabb634c0d387eebfdc03491f2c941f (diff)
ci: fix use-cross condition (#2122)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index da22bd0a7..5c02cba4b 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -87,7 +87,7 @@ jobs:
with:
command: build
args: --release --features tls-vendored --target ${{ matrix.target }}
- use-cross: contains(matrix.target, 'linux')
+ use-cross: ${{ matrix.os == 'ubuntu-latest' }}
- name: Post Build | Prepare artifacts [Windows]
if: matrix.os == 'windows-latest'