This commit is contained in:
parent
fca61353b7
commit
73acbe0273
1 changed files with 16 additions and 0 deletions
16
.forgejo/workflows/release.yml
Normal file
16
.forgejo/workflows/release.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: github.com/actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: 1.22
|
||||||
|
- run: go build .
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
path: ./spud
|
Loading…
Reference in a new issue