Skip to content

Commit

Permalink
Update autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
divanvisagie committed Sep 3, 2023
1 parent c5eceef commit 1672451
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1672451

Please sign in to comment.