From 38a858822d840a1c11fe4ddfc59ee7729017e9b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Bustarret?= Date: Mon, 13 Jul 2026 08:07:10 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(homebrew):=20the=20workflow?= =?UTF-8?q?=20used=20the=20tag=20ref=20(refs/tags/x)=20instead=20of=20the?= =?UTF-8?q?=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-homebrew.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-homebrew.yml b/.github/workflows/release-homebrew.yml index 6a3a9fc5..bbdfd428 100644 --- a/.github/workflows/release-homebrew.yml +++ b/.github/workflows/release-homebrew.yml @@ -27,5 +27,7 @@ jobs: repo: 'homebrew-tap', workflow_id: 'release-pr.yml', ref: 'main', - inputs: {tool: 'octl', tag: context.ref, hash: context.sha }, + inputs: {tool: 'octl', tag: process.env.tag, hash: context.sha }, }); + env: + tag: ${{ github.ref_name }}