Skip to content

Commit 9b0d355

Browse files
authored
Fix release script (#13573)
1 parent 1ec25dc commit 9b0d355

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

tools/releasing/create_release_tars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ tar czf "${SCRIPT_DIR}"/${PRODUCT_NAME}-${RELEASE_VERSION}-src.tar.gz \
8080
log_file=$(mktemp)
8181
echo "Building the release binary artifacts, log file: ${log_file}"
8282
${MVN} install package -DskipTests > ${log_file} 2>&1
83-
mv dist/${PRODUCT_NAME}-bin.tar.gz "${SCRIPT_DIR}"/${PRODUCT_NAME}-${RELEASE_VERSION}-bin.tar.gz
83+
mv "${SCRIPT_DIR}"/skywalking/dist/${PRODUCT_NAME}-bin.tar.gz ./${PRODUCT_NAME}-${RELEASE_VERSION}-bin.tar.gz
8484

8585
cd "${SCRIPT_DIR}"
8686
gpg --armor --detach-sig ${PRODUCT_NAME}-${RELEASE_VERSION}-src.tar.gz

tools/releasing/start_next_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ git add pom.xml
5656
git commit -m "Update the next release version to ${NEXT_RELEASE_VERSION}-SNAPSHOT"
5757

5858
echo "Moving the changelog file..."
59-
mv docs/en/changes/changes.md docs/en/changes-$RELEASE_VERSION.md
59+
mv docs/en/changes/changes.md docs/en/changes/changes-$RELEASE_VERSION.md
6060

6161
echo "Updating the changelog file..."
6262
cat docs/en/changes/changes.tpl | sed "s/NEXT_RELEASE_VERSION/${NEXT_RELEASE_VERSION}/g" > docs/en/changes/changes.md

0 commit comments

Comments
 (0)