From a636c9cedd10f3d25e1828cc7578ed85fda18d96 Mon Sep 17 00:00:00 2001 From: Danilo Pianini Date: Sat, 27 Feb 2021 10:16:26 +0000 Subject: [PATCH] [Autodelivery] update Java multiplatform continuous integration pipeline from DanySK/centralized-automated-deployer@1ad4b31 --- .github/workflows/build-and-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 10185f7a..7fb1bab9 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -80,11 +80,11 @@ jobs: - name: Build if: ${{ env.COMPATIBLE == 'true' }} shell: bash - run: .github/build-steps/build.sh + run: .github/build-steps/build.sh || .github/build-steps/build.sh - name: Check if: ${{ env.COMPATIBLE == 'true' }} shell: bash - run: .github/build-steps/check.sh + run: .github/build-steps/check.sh || .github/build-steps/check.sh - name: CodeCov if: ${{ env.REFERENCE == 'true' }} uses: codecov/codecov-action@v1 @@ -103,7 +103,7 @@ jobs: SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} - run: .github/build-steps/deploy.sh + run: .github/build-steps/deploy.sh || .github/build-steps/deploy.sh Build-Success: runs-on: ubuntu-latest needs: Build