Skip to content

Commit

Permalink
fix excludes from tar archive to reduce size
Browse files Browse the repository at this point in the history
  • Loading branch information
SteKoe committed Jun 8, 2021
1 parent 4c57754 commit df68d6b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ jobs:
ln -s nextcloud-customproperties customproperties
touch customproperties_${{ env.VERSION }}.tar.gz
tar -zvchf customproperties_${{ env.VERSION }}.tar.gz \
--exclude='customproperties/node_modules/' \
--exclude='customproperties/.git/' \
--exclude='customproperties/.github/' \
--exclude='customproperties/.build/' \
--exclude='customproperties/.cache/' \
--exclude='customproperties/.idea/' \
--exclude='customproperties/.github/' \
--exclude='customproperties/translationfiles/' \
--exclude='customproperties/src/' \
--exclude='customproperties/tests/' \
--exclude='customproperties/node_modules' \
--exclude='customproperties/.git' \
--exclude='customproperties/.github' \
--exclude='customproperties/.build' \
--exclude='customproperties/.cache' \
--exclude='customproperties/.idea' \
--exclude='customproperties/.github' \
--exclude='customproperties/translationfiles' \
--exclude='customproperties/src' \
--exclude='customproperties/tests' \
customproperties/
mv customproperties_${{ env.VERSION }}.tar.gz ./nextcloud-customproperties
Expand Down

0 comments on commit df68d6b

Please sign in to comment.