fox32/.github/workflows/fox32-unstable-windows.yml

30 lines
566 B
YAML
Raw Normal View History

2022-06-22 02:05:54 +02:00
on:
workflow_dispatch:
push:
branches:
- main
name: fox32 Unstable - Windows
jobs:
fox32-unstable-windows:
2022-06-22 02:05:54 +02:00
name: Build
runs-on: windows-latest
2022-06-22 02:05:54 +02:00
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release
2022-06-22 02:05:54 +02:00
- name: Upload artifact
2022-06-22 02:05:54 +02:00
uses: actions/upload-artifact@v2
with:
name: fox32.exe
path: target/release/fox32.exe