├── .github └── workflows │ └── run-validation.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── action.yml ├── azurecontainerapps.ts ├── dist ├── index.js └── licenses.txt ├── package.json ├── src ├── ContainerAppHelper.ts ├── ContainerRegistryHelper.ts ├── GithubActionsToolHelper.ts ├── TelemetryHelper.ts └── Utility.ts ├── tsconfig.json └── yaml-samples ├── create-with-builder-simple.yaml ├── create-with-image-simple.yaml └── update-with-image-simple.yaml /.github/workflows/run-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/.github/workflows/run-validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore 2 | node_modules/ 3 | *.js 4 | !dist/index.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/action.yml -------------------------------------------------------------------------------- /azurecontainerapps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/azurecontainerapps.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/package.json -------------------------------------------------------------------------------- /src/ContainerAppHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/src/ContainerAppHelper.ts -------------------------------------------------------------------------------- /src/ContainerRegistryHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/src/ContainerRegistryHelper.ts -------------------------------------------------------------------------------- /src/GithubActionsToolHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/src/GithubActionsToolHelper.ts -------------------------------------------------------------------------------- /src/TelemetryHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/src/TelemetryHelper.ts -------------------------------------------------------------------------------- /src/Utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/src/Utility.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yaml-samples/create-with-builder-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/yaml-samples/create-with-builder-simple.yaml -------------------------------------------------------------------------------- /yaml-samples/create-with-image-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/yaml-samples/create-with-image-simple.yaml -------------------------------------------------------------------------------- /yaml-samples/update-with-image-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/container-apps-deploy-action/HEAD/yaml-samples/update-with-image-simple.yaml --------------------------------------------------------------------------------