From 158011247e9561b61e41aa54bffdf3cd26659cfd Mon Sep 17 00:00:00 2001 From: Snowykami Date: Thu, 17 Apr 2025 20:45:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=B8=BB=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E4=B8=AD=E5=8A=A0=E8=BD=BD=20YAML=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=E8=B7=AF=E5=BE=84=EF=BC=8C=E4=BB=8E=20'config.yaml'?= =?UTF-8?q?=20=E6=9B=B4=E6=94=B9=E4=B8=BA=20'images.yaml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.py b/sync.py index 6b389f6..6611439 100644 --- a/sync.py +++ b/sync.py @@ -41,7 +41,7 @@ async def docker_push(image: str): async def main(): # Load the YAML file - async with aiofiles.open('config.yaml', 'r') as file: + async with aiofiles.open('images.yaml', 'r') as file: config = yaml.safe_load(file) config = Config(**config)