Skip to content

Commit

Permalink
fixes for CI/release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cxreiff committed Aug 1, 2024
1 parent db81ae5 commit 81556a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ jobs:
- name: populate target directory from cache
uses: Leafwing-Studios/cargo-cache@v2

- name: free disk space
uses: jlumbroso/free-disk-space@main

- name: run tests
run: |
cargo test --workspace --all-features --all-targets
cargo test --workspace --all-features --all-targets --locked
# Workaround for https://github.com/rust-lang/cargo/issues/6669
cargo test --workspace --all-features --doc
cargo test --workspace --all-features --doc --locked
clippy:
name: clippy
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ jobs:

- name: folders for butler
run: |
mkdir upload
for channel in $(ls tars); do
mkdir "upload/${channel%%.*}"; mv ${channel} "upload/${channel%%.*}"
done
Expand Down
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,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 <cooper@cxreiff.com>"]
Expand Down

0 comments on commit 81556a8

Please sign in to comment.