Copilot commented on code in PR #13147: URL: https://github.com/apache/skywalking/pull/13147#discussion_r2015654318
########## docs/en/guides/How-to-release.md: ########## @@ -8,90 +8,36 @@ Add your GPG public key into the [SkyWalking GPG KEYS](https://dist.apache.org/r - If you are a PMC member, use your Apache ID and password to log in this svn, and update the file. **Don't override the existing file.** - If you are a committer, please ask a PMC member to help you. -## Tag for the release +## Create artifacts for the release -- Set the version number that you are about to release. +- Create a new empty folder to do the release work. +- Set the version numbers and run the release script file [`tools/releasing/create_release_tars.sh`](https://github.com/apache/skywalking/blob/master/tools/releasing/create_release_tars.sh) ```bash export RELEASE_VERSION=x.y.z # (example: RELEASE_VERSION=10.1.0) export NEXT_RELEASE_VERSION=x.y.z # (example: NEXT_RELEASE_VERSION=10.2.0) -export PRODUCT_NAME="apache-skywalking-apm" -export SOURCE_FILE="dist/${PRODUCT_NAME}-${RELEASE_VERSION}.tar.gz" -export TARGET_DIR="tools/releasing" +curl -Ls https://raw.githubusercontent.com/apache/skywalking/refs/heads/master/tools/releasing/create_release_tars.sh | bash - Review Comment: The instructions do not indicate that necessary environment variables (e.g., RELEASE_VERSION) must be set before executing the script. Please update the doc to ensure users configure these variables. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
