Skip to content

Commit

Permalink
use zip instead of tar #25
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-saigre committed Oct 11, 2024
1 parent 1ab980d commit 215d478
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/latex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
clean: true

- name: Install hooks
- name: Install hooks
run: |
bash ./a.cli setup
Expand Down Expand Up @@ -152,8 +152,10 @@ jobs:
- name: Archive Article
run: |
temp_dir=$(mktemp -d)
tar -czvf "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.tar.gz" -C artifact ./
mv "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.tar.gz" ./
# tar -czvf "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.tar.gz" -C artifact ./
# mv "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.tar.gz" ./
zip "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.zip" ./
mv "${temp_dir}/${{ needs.workflow-setup.outputs.prefixwithref }}.zip" ./
rm -rf "$temp_dir"
- name: Create Release
Expand Down

0 comments on commit 215d478

Please sign in to comment.