serv/.forgejo/workflows/build.yml
2024-08-07 23:02:32 +03:00

22 lines
639 B
YAML

on: [push]
jobs:
test:
runs-on: docker
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
with:
fetch-depth: 0
- uses: https://code.forgejo.org/actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Install dependencies
run: go mod download
- name: Build go
run: go build -o serv -v ./...
- uses: https://code.forgejo.org/actions/forgejo-release@v1
with:
direction: upload
url: https://gitrepo.ru
repo: neonxp/serv
release-dir: neonxp/serv
token: '${{secrets.RELEASE_TOKEN}}'