From 63e36caf2d2e0c5bee726f57ed60c3ad116c608d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Thu, 23 Nov 2023 09:16:57 +0100 Subject: [PATCH] Windows --- .github/workflows/windows.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 46aa7da..d7ab386 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,14 +30,14 @@ jobs: rustup target add x86_64-pc-windows-gnu - name: Compile Krokiet - run: cargo build --release --target x86_64-unknown-linux-gnu --bin krokiet + run: cargo build --release --target x86_64-pc-windows-gnu --bin krokiet - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: krokiet-windows-c-on-linux-${{ github.sha }}-${{ matrix.use_heif }} path: | - target/release/krokiet.exe + target/x86_64-pc-windows-gnu/release/krokiet.exe if-no-files-found: error - name: Show console window on windows @@ -46,14 +46,14 @@ jobs: cat krokiet/src/main.rs - name: Compile Krokiet Console - run: cargo build --release --target x86_64-unknown-linux-gnu --bin krokiet + run: cargo build --release --target x86_64-pc-windows-gnu --bin krokiet - name: Upload artifacts Console uses: actions/upload-artifact@v3 with: name: krokiet-windows-c-on-linux-${{ github.sha }}-${{ matrix.use_heif }}-console path: | - target/release/krokiet.exe + target/x86_64-pc-windows-gnu/release/krokiet.exe if-no-files-found: error krokiet-compiled-on-windows: