Skip to content

Commit 7a2912b

Browse files
authored
Update release.yml
1 parent 03c2afb commit 7a2912b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ jobs:
8888
VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
8989
WORKDIR=$(pwd)
9090
PKG=osvm-$VERSION
91-
TARBALL="$WORKDIR/osvm_${VERSION}.orig.tar.gz"
91+
TARBALL="../osvm_${VERSION}.orig.tar.gz" # Create tarball in parent directory
9292
# Clean up any old stuff
9393
rm -rf "$PKG"
9494
rm -f "$TARBALL"
9595
# Prepare source dir
9696
mkdir -p "$PKG"
9797
cp -r src Cargo.toml Cargo.lock README.md LICENSE "$PKG/"
98-
# Pack source tarball in the working dir
98+
# Pack source tarball in the parent dir
9999
tar czvf "$TARBALL" "$PKG"
100100
# Move into the package dir
101101
cd "$PKG"

0 commit comments

Comments
 (0)