Skip to content

Add basic CLI for configuration. #15

Add basic CLI for configuration.

Add basic CLI for configuration. #15

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
tags:
- '*'
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
allowUpdates: true
tag: release
token: ${{secrets.GITHUB_TOKEN}}