From 9fdb83c82873fe2fcadf99bd2b665b6d9e49e7a0 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Sat, 16 May 2020 20:57:34 +0100 Subject: [PATCH] Checkout & get all artifact files --- .github/workflows/all.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index 910e9205e..cafe5e2f6 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -23,6 +23,7 @@ jobs: - build_source - build_stretch_64 steps: + - uses: actions/checkout@v1.2.0 - uses: actions/download-artifact@v2 with: path: release_artifacts @@ -34,7 +35,7 @@ jobs: VERSION=$(echo release_artifacts/**/*.tar.xz | sed -e 's/.*clementine-\(.*\).tar.xz/\1/') echo "Version: ${VERSION}" assets=() - for asset in release_artifacts/**/*; do + for asset in $(find release_artifacts -type f); do echo "Adding asset: ${asset}" assets+=("-a" "$asset") done