mirror of
https://github.com/htrefil/rkvm.git
synced 2025-01-15 03:41:32 +01:00
29 lines
477 B
YAML
29 lines
477 B
YAML
|
name: Release
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
jobs:
|
||
|
windows:
|
||
|
runs-on: windows-latest
|
||
|
|
||
|
defaults:
|
||
|
run:
|
||
|
shell: bash
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Test
|
||
|
run: cargo test --release
|
||
|
- name: Build
|
||
|
run: cargo build --release
|
||
|
- name: Upload portable executable
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: release
|
||
|
path: |
|
||
|
target/release/*.exe
|
||
|
|