Skip to content

Commit

Permalink
Update to actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscerie committed Sep 22, 2024
1 parent d604387 commit 815621b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cd selene
cargo build --locked --release
- name: Upload selene
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-windows
path: ./target/release/selene.exe
Expand All @@ -29,7 +29,7 @@ jobs:
cd selene
cargo build --locked --release --verbose --no-default-features
- name: Upload selene-light
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-light-windows
path: ./target/release/selene.exe
Expand All @@ -45,7 +45,7 @@ jobs:
cd selene
cargo build --locked --release
- name: Upload selene
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-macos
path: ./target/release/selene
Expand All @@ -61,7 +61,7 @@ jobs:
cd selene
cargo build --locked --release --verbose --no-default-features
- name: Upload selene-light
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-light-macos
path: ./target/release/selene
Expand All @@ -74,7 +74,7 @@ jobs:
cd selene
cargo build --locked --release
- name: Upload selene
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-linux
path: ./target/release/selene
Expand All @@ -87,7 +87,7 @@ jobs:
cd selene
cargo build --locked --release --verbose --no-default-features
- name: Upload selene-light
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: selene-light-linux
path: ./target/release/selene
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-roblox-std.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- name: Generate
run: cargo run --bin selene --verbose -- generate-roblox-std
- name: Upload
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: roblox
path: roblox.yml

0 comments on commit 815621b

Please sign in to comment.