Skip to content

Commit

Permalink
fix elif
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Heinrich <[email protected]>
  • Loading branch information
andistorm committed Jul 8, 2024
1 parent a87ba80 commit ff48526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-single-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
for path in list_of_paths:
if os.path.isdir(f"{path}"):
path = f"{path}/*"
else if os.path.isfile(f"{path}"):
elif os.path.isfile(f"{path}"):
path = f"{path}"
else:
print(f"Path {path} does not exist!❌")
Expand Down

0 comments on commit ff48526

Please sign in to comment.