From d2c384dd79de4baed38e115896b6542e5fd94ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 12 Jun 2026 23:36:59 +0200 Subject: [PATCH] ci: release: never mark release as completed (testing) Disable the publish-release step so the GitHub release stays a draft and is never marked as completed. This lets us exercise all the other release steps end-to-end without actually cutting a release. --- .github/workflows/release.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5802645a9c..392aace9f4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -317,6 +317,11 @@ jobs: - name: Publish a release run: | - ./tools/packaging/release/release.sh publish-release + # TESTING: intentionally NOT publishing the release so the draft is + # never marked as completed. This lets us exercise all the other + # release steps without actually cutting a release. + echo "Skipping 'release.sh publish-release' on purpose (testing mode)." + echo "The release will remain a draft and will NOT be marked as completed." + # ./tools/packaging/release/release.sh publish-release env: GH_TOKEN: ${{ github.token }}