From d930f407a15f4bbb03587d865c6a1229be55cf55 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Ricau Date: Sat, 24 Aug 2024 14:27:37 -0700 Subject: [PATCH] nits release instructions --- RELEASING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index daafa22..e0e4cd5 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -34,7 +34,7 @@ git commit -am "Prepare {NEW_VERSION} release" * Perform a clean build ```bash -./gradlew clean && gw build && gw connectedCheck +./gradlew clean && ./gradlew build && ./gradlew connectedCheck ``` * Create a tag and push it @@ -48,6 +48,8 @@ git push origin v{NEW_VERSION} gh workflow run publish-release.yml --ref v{NEW_VERSION} ``` +Alternatively, you can run the workflow manually from the GitHub UI [here](https://github.com/square/radiography/actions/workflows/publish-release.yml) and select it to run from the release tag. + * Merge the release branch to main ```bash git checkout main