From 73a3c19ad5101c642e7747c8834a56d7536e20cc Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Mon, 10 Jan 2022 16:57:59 -0600 Subject: [PATCH] just check out both repositories in the CI job --- .github/workflows/build.yml | 13 ++++++++++++- Cargo.toml | 1 - 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18aefa8..0fd5d8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index f4a59de..770a554 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,6 @@ gfx_device_gl = "0.16.2" [dependencies.libosu] path = "../libosu" -version = "*" [features] clippy = []