alt_enter_fix/.gitea/workflows/rust.yml
tommy 977213e2cd
Some checks failed
Rust / build (push) Failing after 9s
attempt the windows build
2024-08-26 13:41:45 -04:00

28 lines
499 B
YAML

name: Rust
on:
push:
branches: ["master"]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc
- name: Build release
run: cargo build --release
- name: Archive build
uses: actions/upload-artifact@v3
with:
name: alt_enter_fix
path: target/release/*