unos/.gitea/workflows/watchdog-build.yaml

31 lines
830 B
YAML
Raw Permalink Normal View History

on:
pull_request:
types:
- labeled
- opened
- synchronize
- closed
workflow_dispatch:
2024-03-11 08:19:03 +00:00
permissions:
pull-requests: read
2024-03-11 08:19:03 +00:00
jobs:
build-docker-image:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
defaults:
run:
working-directory: ./watchdog-go
if: contains(github.event.pull_request.labels.*.name,'watchdog-go')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "^1.20"
- run: go build -o watchdog-go -ldflags="-s -w" -trimpath
- run: curl --user usbharu:${{ secrets.DEPLOY_TOKEN }} --upload-file watchdog-go https://git.usbharu.dev/api/packages/usbharu/generic/watchdog-go/${{ github.sha }}/watchdog-go
if: github.event.pull_request.merged == true