Add build workflow
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Tim Jagenberg 2025-05-14 22:27:57 +02:00
parent f24309f182
commit a8fedb1670

View file

@ -0,0 +1,25 @@
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.24"
- name: Run build script
run: ./build.sh
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: ./build/*