We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c2afb commit 7a2912bCopy full SHA for 7a2912b
.github/workflows/release.yml
@@ -88,14 +88,14 @@ jobs:
88
VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
89
WORKDIR=$(pwd)
90
PKG=osvm-$VERSION
91
- TARBALL="$WORKDIR/osvm_${VERSION}.orig.tar.gz"
+ TARBALL="../osvm_${VERSION}.orig.tar.gz" # Create tarball in parent directory
92
# Clean up any old stuff
93
rm -rf "$PKG"
94
rm -f "$TARBALL"
95
# Prepare source dir
96
mkdir -p "$PKG"
97
cp -r src Cargo.toml Cargo.lock README.md LICENSE "$PKG/"
98
- # Pack source tarball in the working dir
+ # Pack source tarball in the parent dir
99
tar czvf "$TARBALL" "$PKG"
100
# Move into the package dir
101
cd "$PKG"
0 commit comments