Обновить executor/handlers/config.py
Test Actions / Builder (push) Successful in 7s

This commit is contained in:
2026-03-16 23:02:07 +03:00
parent 9142e309ae
commit 01eebbf32a
+2 -2
View File
@@ -6,6 +6,6 @@ from os import getenv
def handle_config(config):
INPUT_REF = getenv('INPUT_REF')
if len(INPUT_REF)==0:
config['ref'] = 'refs/heads/' + getenv('GITHUB_REF_NAME')
config['ref'] = getenv('GITHUB_REF_NAME')
else:
config['ref'] = 'refs/heads/' + INPUT_REF
config['ref'] = INPUT_REF