mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
fix repo caps (#7800)
fixes error introduced in https://github.com/inventree/InvenTree/pull/7785
This commit is contained in:
parent
abe9b19ead
commit
3e5b1a012b
2
.github/scripts/version_check.py
vendored
2
.github/scripts/version_check.py
vendored
@ -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')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user