Skip to content

Commit

Permalink
Remove console on Windows
Browse files Browse the repository at this point in the history
- Also adds release version to artifact filename
  • Loading branch information
parasyte committed Jul 24, 2021
1 parent 11a5e03 commit 253747f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mean_bean_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.BIN }}.zip
asset_name: ${{ env.BIN }}-${{ matrix.target }}.zip
asset_name: ${{ env.BIN }}-${{ github.ref }}-${{ matrix.target }}.zip
asset_content_type: application/zip

macos:
Expand Down Expand Up @@ -81,5 +81,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.BIN }}.tar.gz
asset_name: ${{ env.BIN }}-${{ matrix.target }}.tar.gz
asset_name: ${{ env.BIN }}-${{ github.ref }}-${{ matrix.target }}.tar.gz
asset_content_type: application/gzip
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 = "cartunes"
version = "0.1.0"
version = "0.1.1"
description = "Simple comparison app for iRacing car setups."
authors = ["Jay Oster <jay@kodewerx.org>"]
homepage = "https://github.com/parasyte/cartunes"
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//! the Metal graphics API on macOS. Dark mode and light mode OS themes are both included, although
//! automatic theme switching
//! [may not work on all platforms](https://github.com/rust-windowing/winit/issues/1549).
#![windows_subsystem = "windows"]
#![deny(clippy::all)]

use crate::framework::{ConfigHandler, Framework, UserEvent};
Expand Down

0 comments on commit 253747f

Please sign in to comment.