From a44f4c8b7e88703ca9d3f360332883bf908713cc Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Sat, 3 Jun 2023 10:29:08 +0200 Subject: [PATCH] Oops; compile for Linux on Linux machine, not for Windows/Darwin --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7aa009a..ac08fe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,11 +71,11 @@ jobs: - name: Cross-compile Rolens for Linux run: | mkdir releases - wails build -platform darwin/amd64 + wails build -platform linux/amd64 tar -czvf releases/rolens-linux-amd64.tar.gz --directory build/bin Rolens echo "tar_amd64=releases/rolens-linux-amd64.tar.gz" >> "$GITHUB_ENV" rm -rf build/bin - wails build -platform windows/arm64 + wails build -platform linux/arm64 tar -czvf releases/rolens-linux-arm64.tar.gz --directory build/bin Rolens echo "tar_arm64=releases/rolens-linux-arm64.tar.gz" >> "$GITHUB_ENV"