memory-mcp/.forgejo/workflows/build.yml
Tim Jagenberg a8fedb1670
Some checks failed
Build / build (push) Has been cancelled
Add build workflow
2025-05-14 22:31:06 +02:00

26 lines
460 B
YAML

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/*