Skip to content

Commit

Permalink
update upload-artifact to v4 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
afujiwara-roblox authored Jan 30, 2025
1 parent 67797bf commit 85a779a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -44,15 +44,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Build
run: cargo build --locked --verbose --release
env:
OPENSSL_STATIC: 1

- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: tarmac-linux
path: target/release/tarmac

0 comments on commit 85a779a

Please sign in to comment.