Skip to content

Commit

Permalink
gzip archive for systems with no xzip
Browse files Browse the repository at this point in the history
  • Loading branch information
varnav committed Mar 27, 2023
1 parent 0c7112b commit 8ca3678
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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

0 comments on commit 8ca3678

Please sign in to comment.