diff --git a/executor/handlers/config.py b/executor/handlers/config.py index 8da98e7..f968b6d 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'] = getenv('GITHUB_REF_NAME') + config['ref'] = 'ref/spec/' + getenv('GITHUB_REF_NAME') else: - config['ref'] = INPUT_REF + config['ref'] = 'ref/spec/' + INPUT_REF