Fix some typos

This commit is contained in:
Ayaz Salikhov
2025-04-04 02:04:15 +01:00
parent 258a47e789
commit 4597bad999
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ on:
- "docs/**"
# Thse files are also rendered as docs pages
# These files are also rendered as docs pages
- "README.md"
- "CHANGELOG.md"

View File

@@ -85,7 +85,7 @@ def pull_missing_tags(merged_tag: str, all_local_tags: list[str]) -> list[str]:
def push_manifest(merged_tag: str, existing_platform_tags: list[str]) -> None:
LOGGER.info(f"Creating manifest for tag: {merged_tag}")
# Unforunately, `docker manifest create` requires images to have been already pushed to the registry
# Unfortunately, `docker manifest create` requires images to have been already pushed to the registry
# which is not true for new tags in PRs
run_with_retries(
lambda: docker["manifest", "create", merged_tag][existing_platform_tags]