From cccf0a47843f74ab19ff034557ebf9ebd31e3101 Mon Sep 17 00:00:00 2001 From: Anibal Angulo Date: Tue, 25 Nov 2025 06:13:15 +0000 Subject: [PATCH] Update release workflow for new images Update the release workflow to build and tag the new images. The images are now tagged with the image name and the latest tag. The build cache has been removed as it is not needed. --- .github/workflows/release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06e0a65..6ee704a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,9 +51,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Log in to Gitea Registry uses: docker/login-action@v3 with: @@ -74,11 +71,9 @@ jobs: context: . file: .containers/python/Dockerfile push: true - tags: ${{ steps.meta.outputs.tags }} + tags: ${{ steps.meta.outputs.image }}:latest,${{ steps.meta.outputs.image }}:${{ github.sha }} build-args: | PACKAGE=${{ matrix.app }} - cache-from: type=registry,ref=${{ steps.meta.outputs.image }}:buildcache - cache-to: type=registry,ref=${{ steps.meta.outputs.image }}:buildcache,mode=max - name: Image summary run: |