From a9b6c5eb7204fce6aade1d91896ab48b298969ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Pern=C3=ADk?= Date: Mon, 1 Apr 2024 14:24:06 +0200 Subject: [PATCH] Use tar instead of zip --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5018a93..8ce2bc0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,11 +21,11 @@ jobs: - name: Archive the built package uses: TheDoctor0/zip-release@0.7.6 with: - type: zip + type: tar path: luminar - filename: release.zip + filename: release.tar.gz - name: Create a release and publish the archive uses: ncipollo/release-action@v1.14.0 with: - artifacts: release.zip + artifacts: release.tar.gz token: ${{ secrets.GITHUB_TOKEN }}