diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40f404f..93b7f5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,22 +9,22 @@ 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 macos: - runs-on: macos-latest + runs-on: macos-13 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 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"