From 1d8802a7786c28345025510c2875bce55789d5df Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Sat, 7 Sep 2024 14:33:51 -0400 Subject: [PATCH] Fix and debug release CI (#955) Signed-off-by: Mihai Maruseac --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9a9e0cf3b..0ebdf53cd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -83,6 +83,7 @@ jobs: id: hash_execs run: | set -euo pipefail + ls -l .execs/* echo "hash_execs=$(sha256sum .execs/* | base64 -w0)" >> "${GITHUB_OUTPUT}" # When uploading executables we push them all to the same archive and @@ -98,7 +99,7 @@ jobs: - name: Upload executables as an artifact for later jobs in workflow uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: - path: .execs/ + path: .execs/* name: executables.zip # When downloading it is a zip with all executables if-no-files-found: error retention-days: 1