From 67d03d2dc382604923d1ecca729c24c9dc8d5394 Mon Sep 17 00:00:00 2001 From: Julien Dramaix Date: Wed, 6 Aug 2025 12:16:30 +0200 Subject: [PATCH] Update release_prep.sh --- .github/workflows/release_prep.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_prep.sh b/.github/workflows/release_prep.sh index 81be757..5c01334 100755 --- a/.github/workflows/release_prep.sh +++ b/.github/workflows/release_prep.sh @@ -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. @@ -25,4 +25,4 @@ cat << EOF \`\`\`starlark bazel_dep(name = "${bazel_module_name}", version = "${tag}") \`\`\` -EOF \ No newline at end of file +EOF