update CI
Some checks failed
Push web base image / build_base_image (3.18, 3.10) (push) Failing after 10s
Push web base image / build_base_image (3.18, 3.11) (push) Failing after 9s
Push web base image / build_base_image (3.19, 3.10) (push) Failing after 10s
Push web base image / build_base_image (3.19, 3.11) (push) Failing after 9s
Push web base image / build_base_image (3.19, 3.12) (push) Failing after 9s
Push web base image / build_base_image (3.19, 3.13) (push) Failing after 10s
Push web base image / build_base_image (3.20, 3.10) (push) Failing after 9s
Push web base image / build_base_image (3.20, 3.11) (push) Failing after 9s
Push web base image / build_base_image (3.20, 3.12) (push) Failing after 9s
Push web base image / build_base_image (3.20, 3.13) (push) Failing after 13s
Push web base image / build_base_image (3.21, 3.10) (push) Failing after 9s
Push web base image / build_base_image (3.21, 3.11) (push) Failing after 10s
Push web base image / build_base_image (3.21, 3.12) (push) Failing after 10s
Push web base image / build_base_image (3.21, 3.13) (push) Failing after 14s

This commit is contained in:
Attilio Greco 2025-01-13 15:02:02 +01:00
parent cc295b9848
commit 0ca90ccdac

View File

@ -2,7 +2,7 @@ name: Push web base image
on: on:
push: push:
branches: branches:
- main - gitea-test
release: release:
types: [published, created, edited] types: [published, created, edited]
pull_request: pull_request:
@ -42,31 +42,31 @@ jobs:
# driver-opts: | # driver-opts: |
# image=moby/buildkit:v0.10.6 # image=moby/buildkit:v0.10.6
- id: string # - id: string
uses: ASzc/change-string-case-action@v5 # uses: ASzc/change-string-case-action@v5
with: # with:
string: ${{ github.repository_owner }} # string: ${{ github.repository_owner }}
#
- name: Build and push base # - name: Build and push base
uses: docker/build-push-action@v6 # uses: docker/build-push-action@v6
with: # with:
build-args: | # build-args: |
PYTHON_VERSION=${{ matrix.python }} # PYTHON_VERSION=${{ matrix.python }}
ALPINE_VERSION=${{ matrix.alpine }} # ALPINE_VERSION=${{ matrix.alpine }}
context: . # context: .
file: ./Docker/Dockerfile.base # file: ./Docker/Dockerfile.base
platforms: linux/amd64,linux/arm64 # platforms: linux/amd64,linux/arm64
push: true # push: true
tags: ghcr.io/${{ steps.string.outputs.lowercase }}/web-base/python:${{ matrix.python }}-alpine${{ matrix.alpine }} # tags: ghcr.io/${{ steps.string.outputs.lowercase }}/web-base/python:${{ matrix.python }}-alpine${{ matrix.alpine }}
#
- name: Build and push Poetry # - name: Build and push Poetry
uses: docker/build-push-action@v6 # uses: docker/build-push-action@v6
with: # with:
build-args: | # build-args: |
PYTHON_VERSION=${{ matrix.python }} # PYTHON_VERSION=${{ matrix.python }}
ALPINE_VERSION=${{ matrix.alpine }} # ALPINE_VERSION=${{ matrix.alpine }}
context: . # context: .
file: ./Docker/Dockerfile.poetry # file: ./Docker/Dockerfile.poetry
platforms: linux/amd64,linux/arm64 # platforms: linux/amd64,linux/arm64
push: true # push: true
tags: ghcr.io/${{ steps.string.outputs.lowercase }}/web-base/poetry:${{ matrix.python }}-alpine${{ matrix.alpine }} # tags: ghcr.io/${{ steps.string.outputs.lowercase }}/web-base/poetry:${{ matrix.python }}-alpine${{ matrix.alpine }}