Skip to content

Commit 83b42cd

Browse files
committed
release workflow fix (again)
1 parent a6cd324 commit 83b42cd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
mkdir upload
149149
for channel in $(ls tars); do
150-
mkdir "upload/${channel%%.*}"; mv ${channel} "upload/${channel%%.*}"
150+
mkdir "upload/${channel%%.*}"; mv tars/${channel} "upload/${channel%%.*}"
151151
done
152152
153153
- name: install butler

Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lifecycler"
33
description = "Bevy Game Jam #5 submission. Terminal aquarium."
4-
version = "0.2.6"
4+
version = "0.2.7"
55
edition = "2021"
66
license = "MIT OR Apache-2.0 OR CC0-1.0"
77
authors = ["cxreiff <[email protected]>"]
@@ -12,7 +12,6 @@ keywords = ["bevy", "ratatui", "terminal", "tui", "aquarium"]
1212
include = ["/src", "/assets"]
1313

1414
[features]
15-
default = ["wayland"]
1615
wayland = ["bevy/wayland"]
1716

1817
[dependencies]

0 commit comments

Comments
 (0)