add assets to bundle
All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m35s
All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m35s
This commit is contained in:
parent
2c120106c2
commit
1273953723
1 changed files with 8 additions and 2 deletions
|
|
@ -17,8 +17,14 @@ jobs:
|
|||
export RUSTFLAGS="-Ccodegen-units=4 -Cdebuginfo=0"
|
||||
cargo build --release
|
||||
|
||||
- name: Upload binary artifacts
|
||||
- name: Prepare distribution bundle
|
||||
run: |
|
||||
mkdir -p dist/bevy-santa
|
||||
cp target/release/bevy-santa dist/bevy-santa/
|
||||
cp -r assets dist/bevy-santa/
|
||||
|
||||
- name: Upload game bundle
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bevy-santa-linux-release
|
||||
path: target/release/bevy-santa
|
||||
path: dist/bevy-santa
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue