Files
gomad/.gitea/workflows/build.yml
Itsigo cdac67d781
Some checks failed
Build this app / Builder (push) Failing after 1m23s
first working application
2026-03-07 16:00:09 +01:00

28 lines
585 B
YAML

name: Build this app
run-name: ${{ gitea.actor }} is building GOMAD 🚀
on: [push]
jobs:
Builder:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.26'
- name: Clone the repository
uses: actions/checkout@v4
- name: Build the linux binary
run: make build
- name: Tar binary
run: tar -czf ./bin/gomad.tar.gz ./tmp/gomad_linux_amd64
- name: Release
uses: akkuman/gitea-release-action@v1
with:
files: |-
bin/**