Skip to content

Commit

Permalink
Enable release tar compression
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilucand committed Oct 24, 2024
1 parent b70c3c6 commit 63feba5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
tar zcvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
tar zcvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
tar zcvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Pack release
shell: bash
run: |
tar cvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
tar zcvf "ggcat-${{ matrix.platform.target }}.tar.gz" -C target/${{ matrix.platform.target }}/release/ ggcat
- name: Publish release
uses: AButler/[email protected]
with:
Expand Down

0 comments on commit 63feba5

Please sign in to comment.