From 035f1a444eb946c45ede3d0d377e79c1aba39541 Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Thu, 18 Jun 2020 18:52:44 +0100 Subject: [PATCH] [CI] Delete artifacts before re-running the workflow --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 763da2074..44e868225 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,14 @@ jobs: - name: Remove artifacts uses: swift-project/delete-artifact@swift with: - name: xswiftbus-thin-allos-${{ steps.version.outputs.value }} + name: | + xswiftbus-thin-allos-${{ steps.version.outputs.value }} + xswiftbus-fat-allos-${{ steps.version.outputs.value }} + swiftsymbols-allos-${{ steps.version.outputs.value }} + swiftinstaller-linux-64-${{ steps.version.outputs.value }} + swiftinstaller-windows-64-${{ steps.version.outputs.value }} + swiftinstaller-windows-32-${{ steps.version.outputs.value }} + swiftinstaller-macos-64-${{ steps.version.outputs.value }} failOnError: false warnIfNotFound: false