pipelines
All checks were successful
Build project / build (push) Successful in 1m29s

This commit is contained in:
2025-06-24 09:44:19 +02:00
parent 446fb89d00
commit a35bc7220d
3 changed files with 46 additions and 47 deletions

View File

@@ -0,0 +1,22 @@
name: Build project
on:
push:
jobs:
build:
runs-on: ubuntu-latest
container: golang:1.24
steps:
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan gitea-ssh.engen.priv.no >> ~/.ssh/known_hosts
- name: Install node and go
run: apt update && apt -y 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