From 795eb74193b9e26c08315c2b7d8810d87e4b58d6 Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Sun, 10 Nov 2024 21:59:50 +0000 Subject: [PATCH] debug failing release builds --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 723d57bf..9b78eecf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,6 +69,7 @@ jobs: BIN_NAME=hdx-${{ matrix.code-target }} mv target/${{ matrix.target }}/release/hdx.exe $BIN_NAME.exe 7z a $BIN_NAME.zip $BIN_NAME.exe + ls *.zip *.targ.gz # The binary is zipped to fix permission loss https://github.com/actions/upload-artifact#permission-loss - name: Archive Binary @@ -77,6 +78,7 @@ jobs: BIN_NAME=hdx-${{ matrix.code-target }} mv target/${{ matrix.target }}/release/hdx $BIN_NAME tar czf $BIN_NAME.tar.gz $BIN_NAME + ls *.zip *.targ.gz - name: Upload Binary uses: actions/upload-artifact@v4