rvc-launcher/.gitea/workflows/build.yaml
Yezzi Hsueh a3fa08ee3d
Some checks failed
build-release / Build (push) Failing after 5m9s
ci: update build command
2024-11-29 02:08:28 +08:00

27 lines
648 B
YAML

name: build-release
on:
push:
branches:
- 'main'
- 'dev'
paths-ignore:
- '**.md'
jobs:
Build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-gnu
- name: Build
run: cargo build --target=x86_64-pc-windows-gnu --release
- name: Artifact
uses: actions/upload-artifact@v3
with:
name: rvc-launcher.exe
path: target/x86_64-pc-windows-gnu/release/rvc-launcher.exe