Update release.md (#1613)

This commit is contained in:
Paul Meyer 2023-04-05 05:02:54 -04:00 committed by GitHub
parent 06bbdda9dc
commit de5d8d796b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,8 @@ Releases should be performed using [the automated release pipeline](https://gith
nextMinorVer=$(echo "${ver}" | awk -F. -v OFS=. '{$2 += 1 ; print}')
git checkout main
git pull
git tag v${nextMinorVer}-pre
git push origin refs/tags/v${nextMinorVer}-pre
git tag ${nextMinorVer}-pre
git push origin refs/tags/${nextMinorVer}-pre
```