name: Build & Push Linode Webhook on: push: branches: - master jobs: build: runs-on: ubuntu-latest container: golang:1.24 steps: - name: Install node and go run: apt update && apt install nodejs - 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