From 9142e309ae666dd8135b18ff84a1d69b3ec7f3d0 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Mon, 16 Mar 2026 22:58:50 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20executor/handlers/config.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/handlers/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executor/handlers/config.py b/executor/handlers/config.py index f968b6d..b673cfd 100644 --- a/executor/handlers/config.py +++ b/executor/handlers/config.py @@ -6,6 +6,6 @@ from os import getenv def handle_config(config): INPUT_REF = getenv('INPUT_REF') if len(INPUT_REF)==0: - config['ref'] = 'ref/spec/' + getenv('GITHUB_REF_NAME') + config['ref'] = 'refs/heads/' + getenv('GITHUB_REF_NAME') else: - config['ref'] = 'ref/spec/' + INPUT_REF + config['ref'] = 'refs/heads/' + INPUT_REF