Skip to content
Draft
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository=${GITHUB_REPOSITORY#*/}
directory="${repository}-${tag#v}"
archive="${repository}-${tag}.tar.gz"

git archive --format=tar --prefix=${directory}/ -o "${archive}" ${tag}
git archive --format="tar.gz" --prefix=${directory}/ -o "${archive}" ${tag}

# Replace hyphens with underscores in the repository name to match our Bazel
# module naming conventions.
Expand All @@ -25,4 +25,4 @@ cat << EOF
\`\`\`starlark
bazel_dep(name = "${bazel_module_name}", version = "${tag}")
\`\`\`
EOF
EOF
Loading