We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d155ec commit d13f7c7Copy full SHA for d13f7c7
1 file changed
.github/workflows/create_archive_and_notes.sh
@@ -27,6 +27,8 @@ if grep --exclude=CONTRIBUTING.md --exclude=RELEASING.md --exclude-dir=.* VERSIO
27
#exit 1
28
fi
29
30
+echo "hit 30"
31
+
32
TAG=$1
33
if [ -z "$TAG" ]; then
34
echo "ERROR: TAG env var must be set"
@@ -35,8 +37,11 @@ fi
35
37
# A prefix is added to better match the GitHub generated archives.
36
38
PREFIX="rules_python-${TAG}"
39
ARCHIVE="rules_python-$TAG.tar.gz"
40
+echo "hit 40"
41
git archive --format=tar "--prefix=${PREFIX}/" "$TAG" | gzip > "$ARCHIVE"
42
+echo "hit 42"
43
SHA=$(shasum -a 256 "$ARCHIVE" | awk '{print $1}')
44
+echo "hit 44"
45
46
cat > release_notes.txt << EOF
47
0 commit comments