Skip to content

Commit

Permalink
Trigger pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
snehapar9 committed Sep 21, 2023
1 parent c435c7f commit 86c1f41
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ContainerAppHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export class ContainerAppHelper {
core.debug(`Attempting to create Container App with name "${containerAppName}" in resource group "${resourceGroup}" from provided YAML "${yamlConfigPath}"`);
try {
//let command = `az containerapp create -n ${containerAppName} -g ${resourceGroup} --yaml ${yamlConfigPath}`;

let args = ['containerapp', 'create', '-n', containerAppName, '-g', resourceGroup, '--yaml', yamlConfigPath];
new Utility().executeAndthrowIfError(`az`, args);
// await cpExec(`${command}`);
Expand Down

0 comments on commit 86c1f41

Please sign in to comment.