Testing docker build pipeline
Some checks failed
package-builder / build (push) Successful in 4s
go-builder / build (push) Failing after 4s

This commit is contained in:
Kris Crawford 2024-04-04 19:01:59 -04:00
parent a4a175ae0c
commit ceb759b262
3 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,27 @@
name: package-builder
run-name: package-builder
on:
push:
branches:
- release/*
jobs:
build:
runs-on: dind
container:
image: dind:0.0.1
steps:
- name: Clone
run: |
mkdir -p ~/.ssh
echo "${{ secrets.PI_GIT_KEY }}" | tr -d '\r' > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan git.kcrawford.net >> ~/.ssh/known_hosts
git clone --branch ${GITHUB_REF_NAME} git@git.kcrawford.net:${{env.GITHUB_REPOSITORY}}.git .
- name: Inspect
run: |
env
docker info
#while true; do sleep 180; done

View File

@ -22,7 +22,7 @@ spec:
spec:
containers:
- name: http-header
image: git.kcrawford.net/kcrawford/golang-http-header:0.0.4
image: git.kcrawford.net/kcrawford/golang-http-header:0.0.5
ports:
- containerPort: 8000