more building
Some checks failed
Build this app / Builder (push) Failing after 53s

This commit is contained in:
Itsigo
2025-08-28 14:10:16 +02:00
parent c8f703fcc7
commit 4c8fe16da5

View File

@@ -16,14 +16,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Build the linux binary - name: Build the linux binary
run: go build -o streaming-api run: go build -o ./bin/streaming-api
- name: Tar binary - name: Tar binary
run: tar -czf streaming-api.tar.gz ./streaming-api run: tar -czf ./bin/streaming-api.tar.gz ./streaming-api
- name: Release - name: Release
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
files: files: |-
streaming-api.tar.gz bin/**
./streaming-api