diff --git a/.github/actions/publish-github-release/action.yml b/.github/actions/publish-github-release/action.yml index 63d2963e7d..f2d79e6d82 100644 --- a/.github/actions/publish-github-release/action.yml +++ b/.github/actions/publish-github-release/action.yml @@ -28,8 +28,9 @@ runs: shell: bash run: | if [[ "${{ inputs.version }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo "prerelease=false" >> $GITHUB_ENV - echo "makeLatest=true" >> $GITHUB_ENV + # Promote to Latest manually after validating the release artifacts. + echo "prerelease=true" >> $GITHUB_ENV + echo "makeLatest=false" >> $GITHUB_ENV echo "generateReleaseNotes=false" >> $GITHUB_ENV echo "omitBody=true" >> $GITHUB_ENV else