Skip to content

Commit

Permalink
fix multiline str
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 ac632f9 commit a87ba80
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 @@ -77,7 +77,7 @@ jobs:
working-directory: source
run: |
import os
list_of_paths = "${{ inputs.depends_on_paths }}".split("\n")
list_of_paths = """${{ inputs.depends_on_paths }}""".split("\n")
for path in list_of_paths:
if os.path.isdir(f"{path}"):
path = f"{path}/*"
Expand Down

0 comments on commit a87ba80

Please sign in to comment.