From 3e5b1a012be227a60db480d1cfdfc858e37c0263 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sat, 3 Aug 2024 13:44:19 +0200 Subject: [PATCH] fix repo caps (#7800) fixes error introduced in https://github.com/inventree/InvenTree/pull/7785 --- .github/scripts/version_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/version_check.py b/.github/scripts/version_check.py index aa03e27c1a..1d05c50e87 100644 --- a/.github/scripts/version_check.py +++ b/.github/scripts/version_check.py @@ -198,7 +198,7 @@ if __name__ == '__main__': # Ref: https://getridbug.com/python/how-to-set-environment-variables-in-github-actions-using-python/ with open(os.getenv('GITHUB_ENV'), 'a') as env_file: # Construct tag string - tags = ','.join([f'{REPO}:{tag}' for tag in docker_tags]) + tags = ','.join([f'{REPO.lower()}:{tag}' for tag in docker_tags]) env_file.write(f'docker_tags={tags}\n')