Fix dockerignore #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows MSVC | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rustup Toolchain | |
run: rustup toolchain install stable-x86_64-pc-windows-msvc | |
- name: Rustup Target | |
run: rustup target add x86_64-pc-windows-msvc | |
- name: Build | |
run: cargo +stable-x86_64-pc-windows-msvc build --release --verbose --target x86_64-pc-windows-msvc | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: insanity.exe | |
path: target/x86_64-pc-windows-msvc/release/insanity.exe |