Skip to content

Commit

Permalink
Prune release asset for rules_ios (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
luispadron authored Apr 18, 2023
1 parent e7165c9 commit 303e170
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ jobs:
git config user.email "noreply@github.com"
# Archive the repository
COPYFILE_DISABLE=1 tar czvf "rules_ios.$TAG.tar.gz" ./*
# Considerations:
# - Dont package hidden files (including the .git directory)
# - Dont package the bazel-* symlink directories
# - Dont package the tests directory
COPYFILE_DISABLE=1 tar czvf "rules_ios.$TAG.tar.gz" \
--exclude="./.*" \
--exclude="./bazel-*" \
--exclude="./tests" \
./*
# Create the release notes
./.github/workflows/generate_release_notes.sh "$TAG" | tee notes.md
Expand Down

0 comments on commit 303e170

Please sign in to comment.