Skip to content

Commit

Permalink
CD: rework tar
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixailz committed Nov 2, 2023
1 parent 886ae2d commit 505bb60
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ jobs:
run: |+
DISABLE_HELPER=1 make re
DISABLE_HELPER=1 make clean
rm -rf ./.git
tar czf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ../ft_libft
cd ..
tar rzf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/inc/**/**
tar rzf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/src/**/**
tar rzf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/mk/**/**
tar rzf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/rsc/**/**
tar rzf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/test/**/**
tar czf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/libft.a
tar czf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/Makefile
tar czf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/README.md
tar czf ft_libft-${{ env.ver }}-${{ env.sha7 }}.tar.gz ./ft_libft/LICENSE
- name: ☁️ Upload release artifact
if: success()
Expand Down

0 comments on commit 505bb60

Please sign in to comment.