Skip to content

Commit

Permalink
chore: Enable itch.io release pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Oct 27, 2023
1 parent 69ca8ab commit f649aec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
# update with the name of the main binary
binary: ace-of-the-heavens
add_binaries_to_github_release: true
#itch_target: <itch.io-username>/<game-name>
itch_target: PraxTube/ace-of-the-heavens


jobs:
Expand Down
9 changes: 0 additions & 9 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ace-of-the-heavens"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -14,8 +14,7 @@ opt-level = 1
opt-level = 3

[dependencies]
#bevy = { version = "0.11.2"}
bevy = { version = "0.11.2", features = ["dynamic_linking"] }
bevy = { version = "0.11.2"}

bevy_hanabi = "0.7.0"
bevy_kira_audio = "0.17.0"
Expand Down
2 changes: 1 addition & 1 deletion src/game_logic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ pub fn purge_entities(
mut commands: Commands,
entities: Query<Entity, (Without<Window>, Without<BgmStage>)>,
) {
warn!("initiate the purge");
info!("initiate the purge");

for entity in &entities {
// We use despawn instead of despawn_recursive because that would
Expand Down

0 comments on commit f649aec

Please sign in to comment.