Skip to content

Commit

Permalink
Fix the string in prodimagename
Browse files Browse the repository at this point in the history
  • Loading branch information
jwmoss committed Oct 11, 2024
1 parent 7b4c4f0 commit 08d1ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gcp-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
shell: pwsh
run: |
$date = Get-Date -Format "yyyy-MM-dd"
$ProdImageName = -join((${{ needs.job1.outputs.IMAGENAME }} -Replace "alpha"),$date)
$ProdImageName = -join(('${{ needs.job1.outputs.IMAGENAME }}' -Replace "alpha"),$date)
Write-Output "Creating image $ProdImageName"
gcloud compute images create $ProdImageName `
--source-image ${{ needs.job1.outputs.IMAGENAME }} `
Expand Down

0 comments on commit 08d1ec9

Please # to comment.