Skip to content

fix makefile for building 3? #8

fix makefile for building 3?

fix makefile for building 3? #8

Workflow file for this run

name: Build
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: sudo apt-get install -y libsdl2-dev
- name: Run make
run: make release
- name: Push Release
uses: ncipollo/release-action@v1
with:
name: "FISH8"
artifacts: "./fish8.tar.gz"
replacesArtifacts: true
token: ${{secrets.GITHUB_TOKEN}}