Skip to content

Merge pull request #5 from roblabla/mapping-csv #8

Merge pull request #5 from roblabla/mapping-csv

Merge pull request #5 from roblabla/mapping-csv #8

Workflow file for this run

name: Build binary
on:
push:
branches: [ "master" ]
tags: [ "*" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --target x86_64-pc-windows-msvc
- uses: actions/upload-artifact@v3
with:
name: win64-satsuki
path: target/x86_64-pc-windows-msvc/release/satsuki.exe
- if: github.ref_type == 'tag'
uses: ncipollo/release-action@v1
with:
artifacts: target/x86_64-pc-windows-msvc/release/satsuki.exe