Compare commits

..

7 Commits
main ... dev

Author SHA1 Message Date
0ebca3ce06 ci: v4
Some checks failed
build-release / Build (push) Failing after 11m34s
2024-11-29 03:59:15 +08:00
6462b5d78b ci: update cache
Some checks failed
build-release / Build (push) Failing after 5m51s
2024-11-29 03:47:22 +08:00
8f017c1cdb ci: setup gcc
Some checks failed
build-release / Build (push) Failing after 15m12s
2024-11-29 03:09:46 +08:00
1b9e56e2c4 ci: setup mingw compiler
Some checks failed
build-release / Build (push) Failing after 3m32s
2024-11-29 03:00:57 +08:00
a3fa08ee3d ci: update build command
Some checks failed
build-release / Build (push) Failing after 5m9s
2024-11-29 02:08:28 +08:00
2951d4ae28 ci: update setup tool
Some checks failed
build-release / Build (push) Failing after 3m56s
2024-11-29 01:38:40 +08:00
48a0c7d94e ci: init workflows
Some checks failed
build-release / Build (push) Failing after 7m15s
2024-11-28 23:23:28 +08:00

View File

@ -0,0 +1,31 @@
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: 1.83.0
target: x86_64-pc-windows-gnu
cache-key: 1.83.0
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: gcc gcc-mingw-w64-x86-64
version: 1.0
- name: Build
run: cargo build --target=x86_64-pc-windows-gnu --release
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: rvc-launcher.exe
path: target/x86_64-pc-windows-gnu/release/rvc-launcher.exe