2022-06-22 02:05:54 +02:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
name: fox32 Unstable - Windows
|
|
|
|
|
|
|
|
jobs:
|
2022-07-24 02:56:09 +02:00
|
|
|
fox32-unstable-windows:
|
2022-06-22 02:05:54 +02:00
|
|
|
name: Build
|
2022-07-24 02:56:09 +02:00
|
|
|
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
|
2022-07-24 02:56:09 +02:00
|
|
|
run: cargo build --release
|
2022-06-22 02:05:54 +02:00
|
|
|
|
2022-07-24 02:56:09 +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
|