Some checks failed
Build & Push Linode Webhook / build (push) Failing after 3s
21 lines
468 B
YAML
21 lines
468 B
YAML
name: Build & Push Linode Webhook
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
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: ssh repo
|
|
run: git config --global url.git@gitea-ssh.engen.priv.no:.insteadOf https://gitea.engen.priv.no/
|
|
- name: Build
|
|
run: go build cmd/main.go
|
|
|
|
|