15 lines
No EOL
458 B
YAML
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" |