Skip to content

Commit 51d22e4

Browse files
committed
Fix prefix for release artifact
1 parent c20ae47 commit 51d22e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release_prep.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TAG="$1"
66
REPO="${GITHUB_REPOSITORY#*/}"
77

88
# The prefix is chosen to match what GitHub generates for source archives
9-
PREFIX="${REPO}${TAG:1}"
9+
PREFIX="${REPO}-${TAG:1}"
1010
ARCHIVE="${REPO}-${TAG:1}.tar.gz"
1111

1212
git archive --format=tar.gz --prefix="${PREFIX}/" -o $ARCHIVE HEAD

0 commit comments

Comments
 (0)