├── .gitignore ├── .gitmodules ├── ARM ├── ManagementGroupScope-ARM-Deployment.yml ├── ResourceGroupScope-ARM-Deployment.yml └── SubscriptionScope-ARM-Deployment.yml ├── AppService ├── Properties │ ├── asp.net-core-webapp-on-azure.properties.json │ ├── asp.net-webapp-on-azure.properties.json │ ├── docker-asp.net-core-webapp-sql-on-azure.properties.json │ ├── docker-webapp-container-on-azure.properties.json │ ├── java-jar-webapp-on-azure.properties.json │ ├── java-war-webapp-on-azure.properties.json │ ├── node.js-webapp-on-azure.properties.json │ └── python-webapp-on-azure.properties.json ├── Python-GHA-Samples │ ├── Python-Local-Built-Deploy-Sample.yml │ ├── Python-Poetry-Sample.yml │ ├── Python-PyProject-Uv-Sample.yml │ └── Python-SetupPy-Sample.yml ├── README.md ├── asp.net-core-webapp-on-azure.yml ├── asp.net-webapp-on-azure.yml ├── blessed-sitecontainers-webapp-on-azure.yml ├── docker-asp.net-core-webapp-sql-on-azure.yaml ├── docker-webapp-container-on-azure.yml ├── go-webapp-on-azure.yml ├── java-jar-webapp-on-azure.yml ├── java-war-webapp-on-azure.yml ├── node.js-webapp-on-azure.yml ├── node_express_sampleApp │ ├── .github │ │ └── workflows │ │ │ └── workflow.yml │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── Web.Debug.config │ ├── Web.config │ ├── app.js │ ├── app.yaml │ ├── assets │ │ └── images │ │ │ ├── create-app-service.png │ │ │ ├── create-secret.png │ │ │ ├── get-publish-profile.png │ │ │ ├── node-action.png │ │ │ ├── placeholder.md │ │ │ └── workflow-complete.png │ ├── config.yml │ ├── nodejs-webapp-express.njsproj │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── fonts │ │ │ └── segoeuil.ttf │ │ ├── images │ │ │ ├── successCloudNew.svg │ │ │ └── tweetThis.svg │ │ └── stylesheets │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── style.css │ │ │ └── style.styl │ ├── routes │ │ ├── index.js │ │ └── users.js │ └── views │ │ ├── error.pug │ │ ├── index.pug │ │ └── layout.pug ├── php-webapp-on-azure.yml ├── python-webapp-on-azure.yml ├── sitecontainers-webapp-on-azure.yml ├── vsts-blessed-sitecontainers.yml └── vsts-only-sitecontainers.yml ├── AzureCLI ├── Az-PowerShell.yml └── Az-cli-Provision-Webapp.yml ├── AzurePipelines └── trigger-azure-pipelines.yml ├── AzurePolicy ├── Properties │ └── trigger-scan-on-scope.properties.yml ├── trigger-scan-on-multiple-subscriptions-no-wait.yml ├── trigger-scan-on-resource-group-ignore-compliance-result-for-testApp.yml ├── trigger-scan-on-resource-group-ignore-compliance-result.yml ├── trigger-scan-on-scope.yml ├── trigger-scan-on-subscription-no-report.yml └── trigger-scan-on-subscription.yml ├── CODE_OF_CONDUCT.md ├── Database ├── MySQL-on-Azure.yml ├── PostgreSQL-on-Azure.yml └── SQL-on-Azure.yml ├── End-to-End └── Serverless-web-application │ ├── README.md │ ├── azure-infra-cicd.yml │ ├── functions-api-cicd.yml │ └── spa-cicd.yml ├── FunctionApp ├── Properties │ ├── linux-container-functionapp-on-azure.properties.json │ ├── linux-dotnet-functionapp-on-azure.properties.json │ ├── linux-java-functionapp-on-azure.properties.json │ ├── linux-node.js-functionapp-on-azure.properties.json │ ├── linux-python-functionapp-on-azure.properties.json │ ├── windows-dotnet-functionapp-on-azure-rbac.properties.json │ ├── windows-dotnet-functionapp-on-azure.properties.json │ ├── windows-java-functionapp-on-azure.properties.json │ ├── windows-node.js-functionapp-on-azure.properties.json │ └── windows-powershell-functionapp-on-azure.properties.json ├── README.md ├── linux-container-functionapp-on-azure.yml ├── linux-dotnet-functionapp-on-azure.yml ├── linux-java-functionapp-on-azure.yml ├── linux-node.js-functionapp-on-azure.yml ├── linux-powershell-functionapp-on-azure.yml ├── linux-python-functionapp-on-azure.yml ├── oidc-auth-samples │ ├── linux-dotnet-functionapp-on-azure-oidc.yml │ ├── linux-java-functionapp-on-azure-oidc.yml │ ├── linux-node-functionapp-on-azure-oidc.yml │ ├── powershell-functionapp-on-azure-oidc.yml │ ├── python-functionapp-on-azure-oidc.yml │ ├── windows-dotnet-functionapp-on-azure-oidc.yml │ ├── windows-java-functionapp-on-azure-oidc.yml │ └── windows-node-functionapp-on-azure-oidc.yml ├── windows-dotnet-functionapp-on-azure-rbac.yml ├── windows-dotnet-functionapp-on-azure.yml ├── windows-java-functionapp-on-azure.yml ├── windows-node.js-functionapp-on-azure.yml └── windows-powershell-functionapp-on-azure.yml ├── Kubernetes ├── README.md ├── build-and-deploy-docker-image-aks-using-manifests.yml └── build-and-deploy-docker-image-to-aks-using-helm.yml ├── LICENSE ├── MachineLearning ├── README.md └── img │ └── ml-lifecycle.png ├── Others └── variable-substitution.yml ├── PackageManagement ├── Properties │ └── nuget.properties.json └── nuget.yml ├── README.md ├── SECURITY.md ├── Terraform ├── README.md └── terraform-deployment.yml └── assets ├── create-secrets-for-GitHub-workflows.md └── images ├── Add-secret-name-value.png ├── create-app-service.png ├── create-secret.png ├── get-publish-profile.png ├── node-action.png ├── placeholder.md └── workflow-complete.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/.gitmodules -------------------------------------------------------------------------------- /ARM/ManagementGroupScope-ARM-Deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/ARM/ManagementGroupScope-ARM-Deployment.yml -------------------------------------------------------------------------------- /ARM/ResourceGroupScope-ARM-Deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/ARM/ResourceGroupScope-ARM-Deployment.yml -------------------------------------------------------------------------------- /ARM/SubscriptionScope-ARM-Deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/ARM/SubscriptionScope-ARM-Deployment.yml -------------------------------------------------------------------------------- /AppService/Properties/asp.net-core-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/asp.net-core-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/asp.net-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/asp.net-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/docker-asp.net-core-webapp-sql-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/docker-asp.net-core-webapp-sql-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/docker-webapp-container-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/docker-webapp-container-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/java-jar-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/java-jar-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/java-war-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/java-war-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/node.js-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/node.js-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Properties/python-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Properties/python-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /AppService/Python-GHA-Samples/Python-Local-Built-Deploy-Sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Python-GHA-Samples/Python-Local-Built-Deploy-Sample.yml -------------------------------------------------------------------------------- /AppService/Python-GHA-Samples/Python-Poetry-Sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Python-GHA-Samples/Python-Poetry-Sample.yml -------------------------------------------------------------------------------- /AppService/Python-GHA-Samples/Python-PyProject-Uv-Sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Python-GHA-Samples/Python-PyProject-Uv-Sample.yml -------------------------------------------------------------------------------- /AppService/Python-GHA-Samples/Python-SetupPy-Sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/Python-GHA-Samples/Python-SetupPy-Sample.yml -------------------------------------------------------------------------------- /AppService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/README.md -------------------------------------------------------------------------------- /AppService/asp.net-core-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/asp.net-core-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/asp.net-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/asp.net-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/blessed-sitecontainers-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/blessed-sitecontainers-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/docker-asp.net-core-webapp-sql-on-azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/docker-asp.net-core-webapp-sql-on-azure.yaml -------------------------------------------------------------------------------- /AppService/docker-webapp-container-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/docker-webapp-container-on-azure.yml -------------------------------------------------------------------------------- /AppService/go-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/go-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/java-jar-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/java-jar-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/java-war-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/java-war-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/node.js-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node.js-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/Dockerfile -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/LICENSE -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/README.md -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/Web.Debug.config -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/Web.config -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/app.js -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: nodejs10 2 | -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/create-app-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/assets/images/create-app-service.png -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/create-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/assets/images/create-secret.png -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/get-publish-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/assets/images/get-publish-profile.png -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/node-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/assets/images/node-action.png -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/placeholder.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/assets/images/workflow-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/assets/images/workflow-complete.png -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/config.yml -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/nodejs-webapp-express.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/nodejs-webapp-express.njsproj -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/package-lock.json -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/package.json -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/fonts/segoeuil.ttf -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/images/successCloudNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/images/successCloudNew.svg -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/images/tweetThis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/images/tweetThis.svg -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/stylesheets/style.css -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/public/stylesheets/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/public/stylesheets/style.styl -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/routes/index.js -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/routes/users.js -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/views/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/views/error.pug -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/views/index.pug -------------------------------------------------------------------------------- /AppService/node_express_sampleApp/views/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/node_express_sampleApp/views/layout.pug -------------------------------------------------------------------------------- /AppService/php-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/php-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/python-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/python-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/sitecontainers-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/sitecontainers-webapp-on-azure.yml -------------------------------------------------------------------------------- /AppService/vsts-blessed-sitecontainers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/vsts-blessed-sitecontainers.yml -------------------------------------------------------------------------------- /AppService/vsts-only-sitecontainers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AppService/vsts-only-sitecontainers.yml -------------------------------------------------------------------------------- /AzureCLI/Az-PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzureCLI/Az-PowerShell.yml -------------------------------------------------------------------------------- /AzureCLI/Az-cli-Provision-Webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzureCLI/Az-cli-Provision-Webapp.yml -------------------------------------------------------------------------------- /AzurePipelines/trigger-azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePipelines/trigger-azure-pipelines.yml -------------------------------------------------------------------------------- /AzurePolicy/Properties/trigger-scan-on-scope.properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/Properties/trigger-scan-on-scope.properties.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-multiple-subscriptions-no-wait.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-multiple-subscriptions-no-wait.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-resource-group-ignore-compliance-result-for-testApp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-resource-group-ignore-compliance-result-for-testApp.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-resource-group-ignore-compliance-result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-resource-group-ignore-compliance-result.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-scope.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-scope.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-subscription-no-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-subscription-no-report.yml -------------------------------------------------------------------------------- /AzurePolicy/trigger-scan-on-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/AzurePolicy/trigger-scan-on-subscription.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Database/MySQL-on-Azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Database/MySQL-on-Azure.yml -------------------------------------------------------------------------------- /Database/PostgreSQL-on-Azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Database/PostgreSQL-on-Azure.yml -------------------------------------------------------------------------------- /Database/SQL-on-Azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Database/SQL-on-Azure.yml -------------------------------------------------------------------------------- /End-to-End/Serverless-web-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/End-to-End/Serverless-web-application/README.md -------------------------------------------------------------------------------- /End-to-End/Serverless-web-application/azure-infra-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/End-to-End/Serverless-web-application/azure-infra-cicd.yml -------------------------------------------------------------------------------- /End-to-End/Serverless-web-application/functions-api-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/End-to-End/Serverless-web-application/functions-api-cicd.yml -------------------------------------------------------------------------------- /End-to-End/Serverless-web-application/spa-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/End-to-End/Serverless-web-application/spa-cicd.yml -------------------------------------------------------------------------------- /FunctionApp/Properties/linux-container-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/linux-container-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/linux-dotnet-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/linux-dotnet-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/linux-java-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/linux-java-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/linux-node.js-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/linux-node.js-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/linux-python-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/linux-python-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/windows-dotnet-functionapp-on-azure-rbac.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/windows-dotnet-functionapp-on-azure-rbac.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/windows-dotnet-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/windows-dotnet-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/windows-java-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/windows-java-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/windows-node.js-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/windows-node.js-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/Properties/windows-powershell-functionapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/Properties/windows-powershell-functionapp-on-azure.properties.json -------------------------------------------------------------------------------- /FunctionApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/README.md -------------------------------------------------------------------------------- /FunctionApp/linux-container-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-container-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/linux-dotnet-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-dotnet-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/linux-java-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-java-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/linux-node.js-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-node.js-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/linux-powershell-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-powershell-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/linux-python-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/linux-python-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/linux-dotnet-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/linux-dotnet-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/linux-java-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/linux-java-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/linux-node-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/linux-node-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/powershell-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/powershell-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/python-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/python-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/windows-dotnet-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/windows-dotnet-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/windows-java-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/windows-java-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/oidc-auth-samples/windows-node-functionapp-on-azure-oidc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/oidc-auth-samples/windows-node-functionapp-on-azure-oidc.yml -------------------------------------------------------------------------------- /FunctionApp/windows-dotnet-functionapp-on-azure-rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/windows-dotnet-functionapp-on-azure-rbac.yml -------------------------------------------------------------------------------- /FunctionApp/windows-dotnet-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/windows-dotnet-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/windows-java-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/windows-java-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/windows-node.js-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/windows-node.js-functionapp-on-azure.yml -------------------------------------------------------------------------------- /FunctionApp/windows-powershell-functionapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/FunctionApp/windows-powershell-functionapp-on-azure.yml -------------------------------------------------------------------------------- /Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Kubernetes/README.md -------------------------------------------------------------------------------- /Kubernetes/build-and-deploy-docker-image-aks-using-manifests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Kubernetes/build-and-deploy-docker-image-aks-using-manifests.yml -------------------------------------------------------------------------------- /Kubernetes/build-and-deploy-docker-image-to-aks-using-helm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Kubernetes/build-and-deploy-docker-image-to-aks-using-helm.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /MachineLearning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/MachineLearning/README.md -------------------------------------------------------------------------------- /MachineLearning/img/ml-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/MachineLearning/img/ml-lifecycle.png -------------------------------------------------------------------------------- /Others/variable-substitution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Others/variable-substitution.yml -------------------------------------------------------------------------------- /PackageManagement/Properties/nuget.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/PackageManagement/Properties/nuget.properties.json -------------------------------------------------------------------------------- /PackageManagement/nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/PackageManagement/nuget.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Terraform/README.md -------------------------------------------------------------------------------- /Terraform/terraform-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/Terraform/terraform-deployment.yml -------------------------------------------------------------------------------- /assets/create-secrets-for-GitHub-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/create-secrets-for-GitHub-workflows.md -------------------------------------------------------------------------------- /assets/images/Add-secret-name-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/Add-secret-name-value.png -------------------------------------------------------------------------------- /assets/images/create-app-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/create-app-service.png -------------------------------------------------------------------------------- /assets/images/create-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/create-secret.png -------------------------------------------------------------------------------- /assets/images/get-publish-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/get-publish-profile.png -------------------------------------------------------------------------------- /assets/images/node-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/node-action.png -------------------------------------------------------------------------------- /assets/images/placeholder.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/images/workflow-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/actions-workflow-samples/HEAD/assets/images/workflow-complete.png --------------------------------------------------------------------------------