From 81556a845bb2d5b2a532d6c6e5ad357b62c0b658 Mon Sep 17 00:00:00 2001 From: cxreiff Date: Thu, 1 Aug 2024 12:30:44 -0700 Subject: [PATCH] fixes for CI/release workflows --- .github/workflows/ci.yaml | 7 +++++-- .github/workflows/release.yaml | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e5e88bd..8026279 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5f30b34..62c3d6c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 07aebc5..baa3d0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "lifecycler" -version = "0.2.5" +version = "0.2.7" dependencies = [ "bevy", "bevy_atmosphere", diff --git a/Cargo.toml b/Cargo.toml index a7c767f..dcb0b2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "]