From 3f0f297dfa9d3e58115b587e15035fc4f8cf837d Mon Sep 17 00:00:00 2001
From: Leonard Ehrenfried <mail@leonard.io>
Date: Mon, 11 Nov 2024 09:58:16 +0100
Subject: [PATCH] Get jib variables from Github

---
 .github/workflows/ci.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e6706d1a..5c1a74c8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -5,9 +5,10 @@ on:
   pull_request:
     branches: [ master ]
 
+
 jobs:
-  unit-tests:
 
+  build:
     runs-on: ubuntu-latest
 
     strategy:
@@ -17,6 +18,9 @@ jobs:
     env:
       LANG: ${{ matrix.locale }}
       MAVEN_ARGS: "--no-transfer-progress -Dstyle.color=always"
+      CONTAINER_REPO: ${{ env.REGISTRY }}
+      CONTAINER_REGISTRY_USER: ${{ github.actor }}
+      CONTAINER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
 
     steps:
     - uses: actions/checkout@v4