fix(ci): point kaniko-act builder at the only working copy

The org copy this workflow produced cannot build (no /tmp), so pointing
its own container at it made the workflow unrunnable.
This commit is contained in:
2026-08-11 20:41:09 +09:00
parent e4ae304954
commit 4e7d84d665
+8 -4
View File
@@ -19,10 +19,14 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
# Self-hosting: the current kaniko-act builds its own successor. The very # The `mikkeli` copy is the only known-good kaniko-act: it was built on
# first org build ran from `mikkeli/kaniko-act:v1.23.2-r2` instead, since # the host with docker. The org copy this workflow produced exits 0 but
# this path did not exist yet. # lacks /tmp, so it cannot build anything — do not point here at it.
image: pi5-16.local:3005/novoyuuparosk-wiki/kaniko-act:v1.23.2-r2 #
# This workflow is consequently NOT usable as-is for a version bump. Fix
# ci/Dockerfile.kaniko-act to force /tmp to materialise first, or build
# on the host. Kept because the destination and auth wiring are correct.
image: pi5-16.local:3005/mikkeli/kaniko-act:v1.23.2-r2
steps: steps:
- name: Fetch source, build, push - name: Fetch source, build, push