From 58c43bdf51a577f2fee8d4184f6551779503922e Mon Sep 17 00:00:00 2001 From: Aiden Fujiwara Date: Wed, 29 Jan 2025 16:12:00 -0800 Subject: [PATCH 1/3] update upload-artifact to v4 --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40f404f..1aecdfc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,13 +9,13 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Build release binary run: cargo build --verbose --locked --release - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: tarmac-win64 path: target/release/tarmac.exe @@ -24,7 +24,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Install Rust run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y @@ -35,7 +35,7 @@ jobs: cargo build --verbose --locked --release - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: tarmac-macos path: target/release/tarmac @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Build run: cargo build --locked --verbose --release @@ -52,7 +52,7 @@ jobs: OPENSSL_STATIC: 1 - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: tarmac-linux path: target/release/tarmac \ No newline at end of file From 2b36dd5655522157dbc377b4e8e22cd3ef177076 Mon Sep 17 00:00:00 2001 From: Aiden Fujiwara Date: Wed, 29 Jan 2025 16:46:09 -0800 Subject: [PATCH 2/3] macos-13 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1aecdfc..93b7f5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: path: target/release/tarmac.exe macos: - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v4 From 1cdda9bbb69099e1ccb06afea168f75343fcde09 Mon Sep 17 00:00:00 2001 From: Aiden Fujiwara Date: Wed, 29 Jan 2025 17:18:39 -0800 Subject: [PATCH 3/3] version 0.8.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae16b41..69986d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1739,7 +1739,7 @@ dependencies = [ [[package]] name = "tarmac" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 77079b7..2be3e0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tarmac" description = "Resource compiler and asset manager for Roblox projects" -version = "0.8.0" +version = "0.8.1" authors = ["Lucien Greathouse "] edition = "2018" license = "MIT"