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
fornwall committed Apr 7, 2024
1 parent bef711c commit 65d6741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ jobs:
with:
toolchain: stable
- run: make macos-app
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: target/x86_64-apple-darwin/release/bundle/osx/Game of Life.app.tar
name: wgpu-game-of-life.macos-x86-64
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: target/aarch64-apple-darwin/release/bundle/osx/Game of Life.app.tar
name: wgpu-game-of-life.macos-aarch64
Expand All @@ -127,7 +127,7 @@ jobs:
with:
toolchain: stable
- run: cargo build --release
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: target/release/wgpu-game-of-life.exe
name: wgpu-game-of-life.windows-x86-64
Expand All @@ -147,7 +147,7 @@ jobs:
sudo apt-get update
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev vulkan-sdk
- run: cargo build --release
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: target/release/wgpu-game-of-life
name: wgpu-game-of-life.linux-x86-64
Expand Down

0 comments on commit 65d6741

Please sign in to comment.