From 8ca367877682b40a8ef35a561d9c4faf78ca1852 Mon Sep 17 00:00:00 2001 From: Evgeny Varnavskiy Date: Mon, 27 Mar 2023 19:12:54 -0400 Subject: [PATCH] gzip archive for systems with no xzip --- .github/workflows/build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f194359..bedc1f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,13 +36,21 @@ jobs: run: | bash bs4dumpvdl2.sh XZ_OPT=-9 tar cJf BaseStation.sqb.tar.xz BaseStation.sqb + tar czf BaseStation.sqb.tar.gz BaseStation.sqb - - name: 'Upload Artifact' + - name: 'Upload Artifact BaseStation.sqb.tar.xz' uses: actions/upload-artifact@v3 with: name: BaseStation.sqb.tar.xz path: BaseStation.sqb.tar.xz retention-days: 10 + + - name: 'Upload Artifact BaseStation.sqb.tar.xz' + uses: actions/upload-artifact@v3 + with: + name: BaseStation.sqb.tar.gz + path: BaseStation.sqb.tar.gz + retention-days: 10 - name: Release uses: "marvinpinto/action-automatic-releases@latest" @@ -51,5 +59,7 @@ jobs: automatic_release_tag: "latest" prerelease: false title: "Autobuild" - files: BaseStation.sqb.tar.xz + files: | + BaseStation.sqb.tar.xz + BaseStation.sqb.tar.gz