Skip to content

Commit

Permalink
Correct name for acr and gpr variables
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanwh committed Nov 21, 2022
1 parent 2e0ecf3 commit 65251fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ try {

const deployToACR = core.getInput('acr') === 'true';
const deployToGPR = core.getInput('gpr') === 'true';
console.log(`Deploy to ACR: ${acr}, deploy to GPR: ${gpr}`)
console.log(`Deploy to ACR: ${deployToACR}, deploy to GPR: ${deployToGPR}`)

let goals;
if (isDefaultBranch) {
Expand Down

0 comments on commit 65251fb

Please sign in to comment.