Skip to content

Commit

Permalink
Use escaped quotes for entrypoint call (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman authored Apr 18, 2024
1 parent ccb7376 commit 24725ca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ runs:
--name $containerName `
-v ${env:GITHUB_WORKSPACE}:$containerSrcPath `
ghcr.io/mthalman/docker-bump-checker:$dockerBumpCheckerVersion `
-BaseImage $baseImage `
-TargetImage $targetImage `
-DockerfilePath $dockerfile `
-BaseStageName $baseStage `
-Architecture $arch
-BaseImage `"$baseImage`" `
-TargetImage `"$targetImage`" `
-DockerfilePath `"$dockerfile`" `
-BaseStageName `"$baseStage`" `
-Architecture `"$arch`"
if ($LASTEXITCODE -ne 0) {
throw "command failed"
}
Expand Down

0 comments on commit 24725ca

Please sign in to comment.