From 6a4eabe9fa701415d653b25d36ac71eed8aa641b Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Thu, 5 Dec 2019 22:43:01 +0100 Subject: [PATCH] Revert "Test if double-zip is detected" This reverts commit cb9e448ff7faa901f19e86f609d615fbe0ae9d18. --- .github/workflows/linux.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 60b709b8..11667330 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -78,13 +78,12 @@ jobs: mv dest "dosbox-staging-$VERSION" tree --si -p "dosbox-staging-$VERSION" # Create tarball - #tar -cJf "dosbox-staging-$VERSION.tar.xz" "dosbox-staging-$VERSION" - zip -r "dosbox-staging-$VERSION.zip" "dosbox-staging-$VERSION" + tar -cJf "dosbox-staging-$VERSION.tar.xz" "dosbox-staging-$VERSION" - name: Upload tarball uses: actions/upload-artifact@master # GitHub automatically zips the artifacts (there's no way to create # a tarball), and it removes all executable flags while zipping. # Letting it zip a tarball preserves flags in the compressed files. with: - name: dosbox-staging-${{ env.VERSION }} - path: dosbox-staging-${{ env.VERSION }}.zip + name: dosbox-staging-linux-x86_64 + path: dosbox-staging-${{ env.VERSION }}.tar.xz