Files
gomad/.gitea/workflows/build.yml
Itsigo 8bb1defbd5
All checks were successful
Build this app / Builder (push) Successful in 40s
fixed file existance checking
2026-03-07 17:10:48 +01:00

29 lines
621 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 ./tmp/gomad.tar.gz ./tmp/gomad_linux_amd64
- name: Release
uses: akkuman/gitea-release-action@v1
with:
tag_name: github.ref_name
files: |-
tmp/**