Workflow
This commit is contained in:
18
.gitea/workflows/docker-build.yaml
Normal file
18
.gitea/workflows/docker-build.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Build & Push Linode Webhook
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install node and go
|
||||
run: apk add nodejs go
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Build
|
||||
run: go build cmd/main.go
|
||||
|
||||
|
||||
Reference in New Issue
Block a user