From 1672451860324a3fee4a628dcbcb291b10da06a5 Mon Sep 17 00:00:00 2001 From: Divan Visagie Date: Sun, 3 Sep 2023 12:21:12 +0200 Subject: [PATCH] Update autobuild --- .github/workflows/release.yml | 6 +++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f420af2..e1df4ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,13 +25,13 @@ jobs: target: x86_64-pc-windows-msvc # Target for Windows - name: Build - run: cargo build --release + run: cargo rustc --release -- -Clink-args="/SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup" - name: Upload to GitHub Releases if: startsWith(github.ref, 'refs/tags/') # Only upload on tagged commits uses: actions/upload-release-asset@v1 with: upload_url: ${{ github.event.release.upload_url }} # Provided by GitHub - asset_path: ./target/x86_64-pc-windows-msvc/release/your_binary.exe # Replace with your binary name - asset_name: your_binary.exe # Replace with your binary name + asset_path: ./target/release/arcanaeum.exe # Replace with your binary name + asset_name: arcanaeum.exe # Replace with your binary name asset_content_type: application/octet-stream diff --git a/Cargo.lock b/Cargo.lock index fefb8c2..b3f005d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,7 +168,7 @@ dependencies = [ [[package]] name = "arcanaeum" -version = "0.2.2" +version = "0.2.3" dependencies = [ "dirs 5.0.0", "eframe", diff --git a/Cargo.toml b/Cargo.toml index 6749909..76dbfcd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arcanaeum" -version = "0.2.2" +version = "0.2.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html