From d26390db3c8d3f0667b671dd3fcba9c1cfdc6bf7 Mon Sep 17 00:00:00 2001 From: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com> Date: Sun, 5 Jul 2026 23:22:18 +0200 Subject: [PATCH] Output release variable in release_dispatch workflow Add echo command to output the release variable before dispatching, to make worflow dispatches in the language projects (e.g. c# or rust) simpler, by not requiring to run the command ourselves. --- .github/workflows/release_dispatch.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release_dispatch.yaml b/.github/workflows/release_dispatch.yaml index 361d3bcc..0028697f 100644 --- a/.github/workflows/release_dispatch.yaml +++ b/.github/workflows/release_dispatch.yaml @@ -41,6 +41,8 @@ jobs: ) }') + echo ${release} + jq -n --argjson payload "$release" '{ event_type: "release", client_payload: $payload }' \ | gh api repos/{owner}/${{ matrix.repository }}/dispatches -X POST -i --input - env: