Skip to content

wip: action

wip: action #1

Workflow file for this run

name: Build
on:
push:
# branches:
# - master
# workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build (GCC)
if: matrix.os != 'windows-latest'
run: ./mk
- name: Build (Windows)
if: matrix.os == 'windows-latest'
run: mk.bat
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
fart
fart.bat
fail_on_unmatched_files: false
generate_release_notes: true
append_body: true