Skip to content

Commit

Permalink
Remove env
Browse files Browse the repository at this point in the history
  • Loading branch information
snehapar9 committed Nov 7, 2023
1 parent 4f9956a commit 91785da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,6 @@ jobs:
acrUsername: ${{ secrets.TEST_REGISTRY_USERNAME }}
acrPassword: ${{ secrets.TEST_REGISTRY_PASSWORD }}
containerAppName: ${{ vars.TEST_EXISTING_CONTAINER_APP_DOCKERFILE }}
containerAppEnvironment: ${{ vars.TEST_EXISTING_CONTAINER_APP_ENV }}
resourceGroup: ${{ vars.TEST_RESOURCE_GROUP_NAME }}
imageToBuild: ${{ env.TEST_FULL_ACR_NAME }}/${{ env.TEST_IMAGE_REPOSITORY }}:${{ env.TEST_IMAGE_TAG }}
disableTelemetry: ${{ vars.TEST_DISABLE_TELEMETRY }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4835,7 +4835,7 @@ var ContainerAppHelper = /** @class */ (function () {
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
command_3 = "az containerapp update -n ".concat(containerAppName, " -g ").concat(resourceGroup, " --output none");
command_3 = "az containerapp update -n ".concat(containerAppName, " -g ").concat(resourceGroup, " --output none --debug");
optionalCmdArgs.forEach(function (val) {
command_3 += " ".concat(val);
});
Expand Down
2 changes: 1 addition & 1 deletion src/ContainerAppHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class ContainerAppHelper {
optionalCmdArgs: string[]) {
toolHelper.writeDebug(`Attempting to update Container App with name "${containerAppName}" in resource group "${resourceGroup}" `);
try {
let command = `az containerapp update -n ${containerAppName} -g ${resourceGroup} --output none`;
let command = `az containerapp update -n ${containerAppName} -g ${resourceGroup} --output none --debug`;
optionalCmdArgs.forEach(function (val: string) {
command += ` ${val}`;
});
Expand Down

0 comments on commit 91785da

Please sign in to comment.