Skip to content

Fix dockerignore

Fix dockerignore #24

Workflow file for this run

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