From 3ad6a2783d990c1b021fc4e60f7f403349edb660 Mon Sep 17 00:00:00 2001 From: Solomon Jacobs Date: Tue, 10 Oct 2023 14:38:54 +0200 Subject: [PATCH] Cross-Compile --- .github/workflows/upload.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload.yml b/.github/workflows/upload.yml index fab0086..d38a6df 100644 --- a/.github/workflows/upload.yml +++ b/.github/workflows/upload.yml @@ -6,7 +6,6 @@ on: types: [opened, closed, synchronize] jobs: - CLAssistant: upload-artefact: runs-on: ubuntu-latest @@ -19,8 +18,11 @@ jobs: with: target: x86_64-pc-windows-gnu + - name: "Build" + run: cargo build --target=x86_64-pc-windows-gnu + - name: Upload binary uses: actions/upload-artifact@v3 with: name: test_ci_binary - path: target/debug/test_ci + path: target/x86_64-pc-windows-gnu/debug/test_ci.exe