From cd7a8ce770f93b1ce7c07af40af5a2fd2915c753 Mon Sep 17 00:00:00 2001 From: Arya Irani Date: Thu, 9 Jan 2025 13:24:15 -0500 Subject: [PATCH] seems to want the file extension now --- scripts/make-release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/make-release.sh b/scripts/make-release.sh index 19a2b99785..43d2e7efaf 100755 --- a/scripts/make-release.sh +++ b/scripts/make-release.sh @@ -52,16 +52,16 @@ echo "Kicking off release workflow in unisonweb/unison" git fetch origin trunk git tag "${tag}" "${src}" git push origin "${tag}" -gh workflow run release --repo unisonweb/unison \ +gh workflow run release.yaml --repo unisonweb/unison \ --ref "${tag}" \ --field "version=${version}" echo "Kicking off Homebrew update task" -gh workflow run release --repo unisonweb/homebrew-unison --field "version=${version}" +gh workflow run release.yaml --repo unisonweb/homebrew-unison --field "version=${version}" echo "Opening relevant workflows in browser" -gh workflow view release --web --repo unisonweb/homebrew-unison || true -gh workflow view release --web --repo unisonweb/unison || true +gh workflow view release.yaml --web --repo unisonweb/homebrew-unison || true +gh workflow view release.yaml --web --repo unisonweb/unison || true echo "Okay! All the work has been kicked off, it may take several hours to complete." echo "Run '$0 --status' to see job status."