From 51f126e4f31b7fc2afffeba231b6f67960f10035 Mon Sep 17 00:00:00 2001 From: Matthew B White Date: Mon, 23 Jan 2023 14:20:08 +0000 Subject: [PATCH] Do not fail if just one of the publsihes fails Signed-off-by: Matthew B White --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a415f4ea..62ae935d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,7 @@ jobs: # Publishing steps to both the Github Packages and the Sonatype publishjars: strategy: + fail-fast: false matrix: publish_target: ["publishAllPublicationsToGithubPackagesRepository","publishAllPublicationsToReleaseRepository"] runs-on: ubuntu-latest @@ -51,6 +52,7 @@ jobs: # Publish to docker registries docker.io and ghcr.io publishdocker: strategy: + fail-fast: false matrix: DOCKER_REGISTRY: ["docker.io","ghcr.io"] runs-on: ubuntu-latest