Lower minimum move distance to 4 #1356
Workflow file for this run
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: Koolo Build CI | |
on: | |
push: | |
pull_request: | |
release: | |
jobs: | |
build: | |
name: "Build Koolo binary" | |
runs-on: windows-2022 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup Go" | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: "Building Koolo artifacts" | |
env: | |
GOPATH: C:\go | |
run: .\build.bat "${{ github.ref_name }}" | |
- name: "Packing the release" | |
run: 7z a -tzip koolo_${{ github.ref_name }}.zip .\build\* | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: koolo_${{ github.ref_name }}.zip |