8 Commits

Author SHA1 Message Date
f34b6512ad Updating key variable
Some checks failed
package-builder / build (push) Successful in 1m58s
go-builder / build (push) Failing after 2s
2024-04-11 19:39:32 -04:00
f9f1dd6264 noop change
Some checks failed
package-builder / build (push) Successful in 2m1s
go-builder / build (push) Failing after 2s
2024-04-11 18:43:54 -04:00
98d38b94b2 noop change
Some checks failed
package-builder / build (push) Failing after 26s
go-builder / build (push) Failing after 8s
2024-04-11 18:37:58 -04:00
cacddb9037 Removing debug statement
Some checks failed
go-builder / build (push) Failing after 10s
package-builder / build (push) Successful in 2m1s
2024-04-06 21:10:29 -04:00
3bbfbdcc92 Version bump
Some checks failed
go-builder / build (push) Failing after 4s
package-builder / build (push) Failing after 4m27s
2024-04-05 19:40:42 -04:00
56d18e9dae Adding a wait state
Some checks failed
go-builder / build (push) Failing after 5s
package-builder / build (push) Has been cancelled
2024-04-05 19:35:48 -04:00
410e8b09f6 Updating runner to use correct image
Some checks failed
go-builder / build (push) Successful in 1m6s
package-builder / build (push) Failing after 37s
2024-04-05 19:29:42 -04:00
730813261b Updating README 2024-04-05 19:28:43 -04:00
3 changed files with 9 additions and 7 deletions

View File

@ -9,12 +9,12 @@ jobs:
build:
runs-on: kcrawford/dind
container:
image: kcrawford/dind:0.0.1
image: kcrawford/dind:0.0.2
steps:
- name: Clone
run: |
mkdir -p ~/.ssh
echo "${{ secrets.PI_GIT_KEY }}" | tr -d '\r' > ~/.ssh/id_ed25519
echo "${{ secrets.LOCAL_SSH_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 .
@ -28,5 +28,6 @@ jobs:
- name: Build
run: |
#while true; do sleep 180; done
docker buildx create --use
docker buildx build --no-cache --platform linux/amd64,linux/arm64 --output type=registry -t git.kcrawford.net/kcrawford/$(basename $(pwd)):${GITHUB_REF##*/} .
docker buildx build --no-cache --platform linux/amd64,linux/arm64 --output type=registry -t git.kcrawford.net/kcrawford/$(basename $(pwd)):${GITHUB_REF##*/} .

View File

@ -7,14 +7,14 @@ on:
jobs:
build:
runs-on: gobuilder
runs-on: kcrawford/gobuilder
container:
image: gobuilder:0.0.5
image: kcrawford/gobuilder:0.0.5
steps:
- name: Clone
run: |
mkdir -p ~/.ssh
echo "${{ secrets.PI_GIT_KEY }}" | tr -d '\r' > ~/.ssh/id_ed25519
echo "${{ secrets.LOCAL_SSH_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 .

View File

@ -1 +1,2 @@
noop
# Intro
Creates a Pod that listens on port 8000/tcp and responds to GET requests with the hostname of the machine running the Pod.