tangled
alpha
login
or
join now
arimelody.space
/
vodular
0
fork
atom
Helper tool for stitching together livestream VOD segments and uploading them to YouTube!
0
fork
atom
overview
issues
pulls
pipelines
forgejo workflows maybe
arimelody.space
1 month ago
c3dc6f09
a6170820
+26
1 changed file
expand all
collapse all
unified
split
.forgejo
workflows
build-release.yaml
+26
.forgejo/workflows/build-release.yaml
···
1
1
+
on:
2
2
+
push:
3
3
+
branches:
4
4
+
- main
5
5
+
6
6
+
jobs:
7
7
+
build-linux-amd64:
8
8
+
runs-on: docker
9
9
+
steps:
10
10
+
- uses: actions/checkout@v6
11
11
+
- uses: actions/setup-go@v6
12
12
+
with:
13
13
+
go-version: '^1.25.3'
14
14
+
- run: go version
15
15
+
16
16
+
- name: Build binary
17
17
+
env:
18
18
+
GOOS: linux
19
19
+
GOARCH: amd64
20
20
+
run: go build -o ./dist/release/vodular-linux-amd64
21
21
+
22
22
+
- name: Publish release
23
23
+
uses: actions/forgejo-release@v2.9.0
24
24
+
with:
25
25
+
direction: upload
26
26
+
token: ${{ secrets.RELEASE_TOKEN }}