Add more exmaples and fix CI
🧪 Test / test (push) Successful in 5m59s

This commit is contained in:
2026-05-08 18:28:12 +02:00
parent 127ffb3849
commit 3c683c821d
8 changed files with 526 additions and 40 deletions
-25
View File
@@ -1,25 +0,0 @@
name: '🐳 Build Builder Image'
on:
push:
branches:
- master
paths:
- 'Dockerfile.builder'
workflow_dispatch:
jobs:
build-and-push:
runs-on: linux/amd64
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to Gitea registry
run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login gitea.tourolle.paris -u "${{ secrets.REGISTRY_USER }}" --password-stdin
- name: Build image
run: docker build -f Dockerfile.builder -t gitea.tourolle.paris/dtourolle/kpnpp-builder:latest .
- name: Push image
run: docker push gitea.tourolle.paris/dtourolle/kpnpp-builder:latest