1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-10 15:22:24 +01:00

GH Actions CI use GHCR (#2027)

This commit is contained in:
Otto Winter
2021-07-15 21:51:52 +02:00
committed by Jesse Hills
parent 4f9a56c884
commit 70902029f8
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ def main():
sys.exit(1)
# detect channel from tag
match = re.match(r'\d+\.\d+(?:\.\d+)?(b\d+)?', args.tag)
match = re.match(r'^\d+\.\d+(?:\.\d+)?(b\d+)?$', args.tag)
if match is None:
channel = CHANNEL_DEV
elif match.group(1) is None: