From b16ba947f830b480d514a2965d52d0ffdb0a6c86 Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Sun, 10 Nov 2024 22:01:47 +0000 Subject: [PATCH] fix typo --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b78eec..a5ba60e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +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 + ls *.zip # The binary is zipped to fix permission loss https://github.com/actions/upload-artifact#permission-loss - name: Archive Binary @@ -78,7 +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 + ls *.tar.gz - name: Upload Binary uses: actions/upload-artifact@v4