just check out both repositories in the CI job
This commit is contained in:
parent
e4b34a7c50
commit
73a3c19ad5
2 changed files with 12 additions and 2 deletions
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -4,13 +4,24 @@ jobs:
|
|||
build:
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
# Check out code
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: editor
|
||||
- uses: actions/checkout@v2
|
||||
repository: iptq/libosu
|
||||
with:
|
||||
path: libosu
|
||||
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- run: |
|
||||
- name: build
|
||||
working-directory: editor
|
||||
run: |
|
||||
cargo build --release
|
||||
- uses: actions/upload-artifact@v2
|
||||
working-directory: editor
|
||||
with:
|
||||
name: editor.exe
|
||||
path: target/release/editor.exe
|
||||
|
|
|
@ -34,7 +34,6 @@ gfx_device_gl = "0.16.2"
|
|||
|
||||
[dependencies.libosu]
|
||||
path = "../libosu"
|
||||
version = "*"
|
||||
|
||||
[features]
|
||||
clippy = []
|
||||
|
|
Loading…
Reference in a new issue