mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
guessed wrong for where the binary is. try again, and add a temporary step to make the next attempt more successful ;)
This commit is contained in:
parent
3ca4d0223e
commit
ce6c1dc6b1
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -20,11 +20,13 @@ jobs:
|
||||
rust-version: 1.40.0
|
||||
- name: Run build
|
||||
run: cargo build --release --bin game
|
||||
- name: Figure out where the output is
|
||||
run: ls -R target
|
||||
- name: Upload binary
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: game
|
||||
path: target/x86_64-apple-darwin/release/game
|
||||
path: target/release/game
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@ -34,8 +36,10 @@ jobs:
|
||||
rust-version: 1.40.0
|
||||
- name: Run build
|
||||
run: cargo build --release --bin game
|
||||
- name: Figure out where the output is
|
||||
run: ls -R target
|
||||
- name: Upload binary
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: game
|
||||
path: target/x86_64-unknown-linux-gnu/release/game
|
||||
path: target/release/game
|
||||
|
Loading…
Reference in New Issue
Block a user