Skip to content

Commit

Permalink
Fix artifact upload in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cabrownlie authored Apr 25, 2024
1 parent cccd503 commit ed7e497
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ jobs:
sudo apt-get update \
&& sudo apt-get install -y g++ pkg-config libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- uses: actions/checkout@v4
- uses: actions/upload-artifact@v4
with:
name: "bevy-example-release"
path: "./target/release/bevy-example"
- uses: actions/cache@v4
with:
path: |
Expand All @@ -36,4 +32,8 @@ jobs:
key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }}
- name: Build Release
run: cargo build --release
- uses: actions/upload-artifact@v4
with:
name: "bevy-example-release"
path: "./target/release/bevy-example"

0 comments on commit ed7e497

Please sign in to comment.