Files
stream-api/.gitea/workflows/build.yml
Itsigo 0ef167ee1f
Some checks failed
Build this app / Builder (push) Failing after 3s
upgrade
2025-08-28 13:50:14 +02:00

30 lines
630 B
YAML

name: Build this app
run-name: ${{ gitea.actor }} is testing out Building a Go app 🚀
on: [push]
jobs:
Builder:
runs-on: alpine
steps:
- name: Upgrade apk
run: apk upgrade
- name: install git
run: apk add go git bash
- name: Clone the repository
uses: actions/checkout@v4
- name: Build the application
run: go build
- name: Tar binary
run: tar -czf streaming-api.tar.gz streaming-api
- name: Release
uses: akkuman/gitea-release-action@v1
with:
files:
streaming-api.tar.gz
streaming-api