From fd83968f4b5f664a2b3e118f6aac4f1867560838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lise=20Rubio?= <30841868+Lysoun@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:12:21 +0200 Subject: [PATCH] :construction_worker: Do not stop when one publishing went wrong --- .github/workflows/publish_docker_packages.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish_docker_packages.yaml b/.github/workflows/publish_docker_packages.yaml index a72e20f7..13fe1f2e 100644 --- a/.github/workflows/publish_docker_packages.yaml +++ b/.github/workflows/publish_docker_packages.yaml @@ -48,6 +48,7 @@ jobs: file: modules/cli/Dockerfile/mongo/3/3.2/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (3.6) env: @@ -59,6 +60,7 @@ jobs: file: modules/cli/Dockerfile/mongo/3/3.6/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (4.0) env: @@ -70,6 +72,7 @@ jobs: file: modules/cli/Dockerfile/mongo/4/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (4.2) env: @@ -81,6 +84,7 @@ jobs: file: modules/cli/Dockerfile/mongo/4/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (4.4) env: @@ -92,6 +96,7 @@ jobs: file: modules/cli/Dockerfile/mongo/4/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (5.0) env: @@ -103,6 +108,7 @@ jobs: file: modules/cli/Dockerfile/mongo/5/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true - name: Build and push (6.0) env: @@ -114,3 +120,4 @@ jobs: file: modules/cli/Dockerfile/mongo/6/Dockerfile build-args: MONGO_MAJOR=${{ env.MONGO_VERSION }} tags: ${{ env.REGISTRY }}/${{ github.repository }}/datamaintain:${{ github.ref_name }}-mongo-${{ env.MONGO_VERSION }} + continue-on-error: true