editor/.github/workflows/build.yml

32 lines
637 B
YAML
Raw Normal View History

2021-03-03 12:57:14 +00:00
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
# Check out code
2021-03-03 12:57:14 +00:00
- uses: actions/checkout@v2
with:
path: editor
- uses: actions/checkout@v2
with:
2022-01-10 22:59:09 +00:00
repository: iptq/libosu
path: libosu
2021-03-03 12:57:14 +00:00
- uses: actions-rs/toolchain@v1
2021-03-03 12:59:34 +00:00
with:
toolchain: stable
2022-01-10 22:59:09 +00:00
- name: build
working-directory: editor
run: |
2021-03-03 13:00:56 +00:00
cargo build --release
2022-01-10 22:59:09 +00:00
2021-03-03 13:17:27 +00:00
- uses: actions/upload-artifact@v2
working-directory: editor
2021-03-03 13:17:27 +00:00
with:
name: editor.exe
path: target/release/editor.exe
2021-03-03 12:59:34 +00:00
2021-03-03 12:57:14 +00:00
# vim: set ts=2 tw=2 sw=2 et :