system/.forgejo/workflows/build.yaml
2026-04-21 13:50:00 +02:00

15 lines
No EOL
458 B
YAML

name: Build avec Kaniko
on: [push]
jobs:
kaniko-build:
runs-on: k8s # Doit correspondre au label dans ta configmap
container:
image: gcr.io/kaniko-project/executor:debug
steps:
- name: Build et Push
run: |
/kaniko/executor \
--context "${{ github.workspace }}" \
--dockerfile "${{ github.workspace }}/Dockerfile" \
--destination "git.qcampos.fr/${{ github.repository }}:latest"