Helper tool for stitching together livestream VOD segments and uploading them to YouTube!

forgejo workflows maybe

+26
+26
.forgejo/workflows/build-release.yaml
··· 1 + on: 2 + push: 3 + branches: 4 + - main 5 + 6 + jobs: 7 + build-linux-amd64: 8 + runs-on: docker 9 + steps: 10 + - uses: actions/checkout@v6 11 + - uses: actions/setup-go@v6 12 + with: 13 + go-version: '^1.25.3' 14 + - run: go version 15 + 16 + - name: Build binary 17 + env: 18 + GOOS: linux 19 + GOARCH: amd64 20 + run: go build -o ./dist/release/vodular-linux-amd64 21 + 22 + - name: Publish release 23 + uses: actions/forgejo-release@v2.9.0 24 + with: 25 + direction: upload 26 + token: ${{ secrets.RELEASE_TOKEN }}