Skip to content

Commit

Permalink
release workflow fix (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
cxreiff committed Aug 1, 2024
1 parent a6cd324 commit 83b42cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
run: |
mkdir upload
for channel in $(ls tars); do
mkdir "upload/${channel%%.*}"; mv ${channel} "upload/${channel%%.*}"
mkdir "upload/${channel%%.*}"; mv tars/${channel} "upload/${channel%%.*}"
done
- name: install butler
Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lifecycler"
description = "Bevy Game Jam #5 submission. Terminal aquarium."
version = "0.2.6"
version = "0.2.7"
edition = "2021"
license = "MIT OR Apache-2.0 OR CC0-1.0"
authors = ["cxreiff <[email protected]>"]
Expand All @@ -12,7 +12,6 @@ keywords = ["bevy", "ratatui", "terminal", "tui", "aquarium"]
include = ["/src", "/assets"]

[features]
default = ["wayland"]
wayland = ["bevy/wayland"]

[dependencies]
Expand Down

0 comments on commit 83b42cd

Please sign in to comment.