From 0424bb9a51c23fdcde8b06087a5d6081b566ace3 Mon Sep 17 00:00:00 2001 From: stef Date: Fri, 12 Dec 2025 14:31:39 +0100 Subject: [PATCH] Ajout Workflow --- .gitea/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..56e7389 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,21 @@ +jobs: + build-and-push-image: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Log in to registry + uses: docker/login-action@v3 + with: + registry: gitea.bv.stef.lan + username: stef + password: stef + - name: Build and push image + uses: docker/build-push-action@v6 + with: + push: true + tags: ${{ gitea.bv.stef.lan }}/${{ env.RESULT_IMAGE_NAME }}:${{ gitea.ref }}