Skip to content

Add option to dump SpotBass data (#41) #20

Add option to dump SpotBass data (#41)

Add option to dump SpotBass data (#41) #20

Workflow file for this run

name: CI-Release
on:
pull_request:
types: [ opened, reopened ]
push:
branches:
- master
jobs:
build-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make -j$(nproc)
- name: create distribution .zip
run: |
docker run --rm -v ${PWD}:/project builder make dist
- uses: actions/upload-artifact@master
with:
name: binary
path: "./dist/dumpling.zip"