From 3723010260d8ebef84f59c60d7ac551c0cc00895 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Sun, 10 Sep 2023 13:36:58 +0200 Subject: [PATCH] continue-on-error in "Download debs" step As we auto-enable DOWNLOAD_DEBS on subsequent builds, we should gracefully handle the failure case that the first build didn't upload any debs. Due to external changes, the next build might succeed anyway. --- .github/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fbfd258..3aac5e5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -122,6 +122,7 @@ jobs: - name: Download debs from previous run uses: actions/download-artifact@v3 if: inputs.DOWNLOAD_DEBS + continue-on-error: true with: name: debs path: ${{ env.DEBS_PATH }}