From ae2a62ba30b66e8d2b3d07dda5006bc3099961c4 Mon Sep 17 00:00:00 2001 From: David Sagan Date: Wed, 20 Sep 2023 19:25:00 -0400 Subject: [PATCH] Update release.yml Correct bmad_dist.tar.gz to use gzip and not use bzip2. --- .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 6c456b1f4a..2bd1120629 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - name: Assemble Tarball run: | mkdir -p ~/bmad_dist; - tar -cjf ~/bmad_dist/bmad_dist.tar.gz -C $GITHUB_WORKSPACE . + tar -czf ~/bmad_dist/bmad_dist.tar.gz -C $GITHUB_WORKSPACE . - name: Create Release - ${{ steps.release_name.outputs.version }} @@ -106,4 +106,4 @@ jobs: message_format: ':tada: *{workflow}* produced a new release of Bmad (${{ steps.release_name.outputs.version }}). Check it out at <${{ steps.create_release.outputs.html_url }}|{repo}>.' footer: '' env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} \ No newline at end of file + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}