Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update tarball structure #129

Merged
merged 2 commits into from
Aug 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: update tarball structure
Signed-off-by: Junjie Gao <[email protected]>
  • Loading branch information
JeyJeyGao committed Aug 18, 2023
commit ca33bae76394726f91046cd6e41a8447cb378801
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -47,5 +47,5 @@ if [[ $ext == "zip" ]]; then
# to include the LICENSE file
(cd "${binary_dir}" && zip -x '*.pdb' -r "${artifact_name}" .) && zip -ur "${artifact_name}" LICENSE
else
tar --no-xattrs -czvf "${artifact_name}" --exclude='*.pdb' -C "${binary_dir}" . -C ../../.. LICENSE
tar --no-xattrs -czvf "${artifact_name}" -C "${binary_dir}" notation-azure-kv -C ../../.. LICENSE
fi