From 2b55bcf00e2f91e69ab02a5fedeb68f59116bb9e Mon Sep 17 00:00:00 2001 From: Tim Jagenberg Date: Wed, 14 May 2025 22:27:57 +0200 Subject: [PATCH] Add build workflow --- .forgejo/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .forgejo/workflows/build.yml diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..89b12b9 --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,25 @@ +name: Build + +on: [push] + +jobs: + build: + runs-on: docker + 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/*