Skip to content

Commit

Permalink
👷 Do not stop when one publishing went wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysoun committed Oct 3, 2023
1 parent 661f665 commit fd83968
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish_docker_packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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

0 comments on commit fd83968

Please sign in to comment.