From 44ff4d0e626147e2966471b14eee4692203826a9 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Tue, 11 Nov 2025 18:41:24 +0100 Subject: [PATCH] feat: Update Python version to 3.12 and use environment variable for Docker image name --- .gitea/workflows/cicache.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/cicache.yml b/.gitea/workflows/cicache.yml index 3f0d38b..74e5a74 100644 --- a/.gitea/workflows/cicache.yml +++ b/.gitea/workflows/cicache.yml @@ -15,6 +15,7 @@ jobs: DB_NAME: calminer_test DB_USER: calminer DB_PASSWORD: calminer_password + REGISTRY_CONTAINER_NAME: calminer runs-on: ubuntu-latest services: @@ -36,7 +37,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: "3.12" - name: Get pip cache dir id: pip-cache @@ -85,7 +86,7 @@ jobs: - name: Build Docker image run: | - docker build -t calminer . + docker build -t ${{ env.REGISTRY_CONTAINER_NAME }} . build: runs-on: ubuntu-latest