Removed unknow AI stuff

This commit is contained in:
Adrien Bouvais 2026-08-15 20:13:43 +02:00
parent a20c7e2c59
commit ea7ee88ce1

View File

@ -24,18 +24,6 @@ jobs:
username: adrien
password: ${{ secrets.DOCKER_PASSWORD }}
# --- 1. BUILD BASE IMAGE ---
- name: Extract metadata for Base
id: meta-base
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.BASE_IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,format=short
type=semver,pattern={{version}}
- name: Build and push Base image
uses: docker/build-push-action@v5
with:
@ -45,18 +33,6 @@ jobs:
tags: ${{ steps.meta-base.outputs.tags }}
labels: ${{ steps.meta-base.outputs.labels }}
# --- 2. BUILD JUPYTER IMAGE ---
- name: Extract metadata for Jupyter
id: meta-jupyter
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.JUPYTER_IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=sha,format=short
type=semver,pattern={{version}}
- name: Build and push Jupyter image
uses: docker/build-push-action@v5
with: