Merge branch 'main' into fix-win-builds #4
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: Export Win 64 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- fix-win-builds | |
jobs: | |
build: | |
name: Export Win64 | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup MinGW | |
uses: egor-tensin/setup-mingw@v2 | |
with: | |
platform: x64 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.0' | |
- name: Build Release | |
run: | | |
make $MAKE_VERSION | |
env: | |
MAKE_VERSION: release_win64 | |
- name: Upload Export | |
uses: actions/upload-artifact@v3 | |
with: | |
name: GoOfLife-Win64.exe | |
path: ./build/* | |
retention-days: 1 |