Skip to content

Final v1.0.0 cleanup #1

Final v1.0.0 cleanup

Final v1.0.0 cleanup #1

Workflow file for this run

name: Release Build
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make dist DEBUG=0
- uses: actions/upload-artifact@v4
with:
name: Bloopair_release
path: dist/*