Skip to content

Commit

Permalink
fix: bug in release_prep.sh (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyawk authored Apr 11, 2024
1 parent d9ddbf6 commit 1707c1e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
set -o errexit -o nounset -o pipefail

TAG="${GITHUB_REF_NAME}"
PREFIX="rules_build_error-${TAG}"
ARCHIVE="rules_build_error-${TAG}.tar.gz"

# StdOut of this script is used for release description
git archive --format=tar "--prefix=${PREFIX}/" "${TAG}" | \
gzip \
> "${ARCHIVE}"

# StdOut of this sript is used for release description
cat << EOF
## Using Bzlmod with Bazel 6 or greater
Expand Down

0 comments on commit 1707c1e

Please sign in to comment.