From d5acb9e44afa475a1caaeeaf41ec9b4c651cde49 Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 16:32:55 +0000 Subject: [PATCH 1/7] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/master_sxltest.yml | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/master_sxltest.yml diff --git a/.github/workflows/master_sxltest.yml b/.github/workflows/master_sxltest.yml new file mode 100644 index 00000000..72d6e4b2 --- /dev/null +++ b/.github/workflows/master_sxltest.yml @@ -0,0 +1,57 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy ASP app to Azure Web App - sxltest + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup MSBuild path + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Setup NuGet + uses: NuGet/setup-nuget@v1.0.5 + + - name: Restore NuGet packages + run: nuget restore + + - name: Publish to folder + run: msbuild /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="\published\" + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v2 + with: + name: ASP-app + path: '/published/**' + + deploy: + runs-on: windows-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: ASP-app + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: 'sxltest' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_DE3781D87A7343A699F7D41DD0122C96 }} + package: . From 8aee974aaea822a6ee6ebb62e4ef54b3ff69409d Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 16:36:27 +0000 Subject: [PATCH 2/7] Test-21MAR23 --- aspnet-get-started/Views/Home/Index.cshtml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aspnet-get-started/Views/Home/Index.cshtml b/aspnet-get-started/Views/Home/Index.cshtml index 32e1dd94..a32937f9 100644 --- a/aspnet-get-started/Views/Home/Index.cshtml +++ b/aspnet-get-started/Views/Home/Index.cshtml @@ -3,9 +3,8 @@ }
-

ASP.NET

-

ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.

-

Learn more »

+

.NET πŸ’œ Azure

+

Example .NET app to Azure App Service.

From 437f85da5f42f786d6a08fa8eb86491555bb1315 Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 16:56:44 +0000 Subject: [PATCH 3/7] TEST-21MAR23-1656PM --- aspnet-get-started/Views/Home/Index.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet-get-started/Views/Home/Index.cshtml b/aspnet-get-started/Views/Home/Index.cshtml index a32937f9..1429532e 100644 --- a/aspnet-get-started/Views/Home/Index.cshtml +++ b/aspnet-get-started/Views/Home/Index.cshtml @@ -3,8 +3,8 @@ }
-

.NET πŸ’œ Azure

-

Example .NET app to Azure App Service.

+

Synextra πŸ’œ Conor

+

Dean is extremely old.

From c28b523574514b9e942b9a8fcea52a85e577d436 Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 18:34:54 +0000 Subject: [PATCH 4/7] Remove the Azure App Service build and deployment workflow config --- .github/workflows/master_sxltest.yml | 57 ---------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/master_sxltest.yml diff --git a/.github/workflows/master_sxltest.yml b/.github/workflows/master_sxltest.yml deleted file mode 100644 index 72d6e4b2..00000000 --- a/.github/workflows/master_sxltest.yml +++ /dev/null @@ -1,57 +0,0 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions - -name: Build and deploy ASP app to Azure Web App - sxltest - -on: - push: - branches: - - master - workflow_dispatch: - -jobs: - build: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2 - - - name: Setup MSBuild path - uses: microsoft/setup-msbuild@v1.0.2 - - - name: Setup NuGet - uses: NuGet/setup-nuget@v1.0.5 - - - name: Restore NuGet packages - run: nuget restore - - - name: Publish to folder - run: msbuild /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="\published\" - - - name: Upload artifact for deployment job - uses: actions/upload-artifact@v2 - with: - name: ASP-app - path: '/published/**' - - deploy: - runs-on: windows-latest - needs: build - environment: - name: 'Production' - url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v2 - with: - name: ASP-app - - - name: Deploy to Azure Web App - id: deploy-to-webapp - uses: azure/webapps-deploy@v2 - with: - app-name: 'sxltest' - slot-name: 'Production' - publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_DE3781D87A7343A699F7D41DD0122C96 }} - package: . From 9e5dc992e73fe3bb6bb46cec3cfed97b2d7858fa Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 18:35:10 +0000 Subject: [PATCH 5/7] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/master_sxltest.yml | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/master_sxltest.yml diff --git a/.github/workflows/master_sxltest.yml b/.github/workflows/master_sxltest.yml new file mode 100644 index 00000000..d5c12d9b --- /dev/null +++ b/.github/workflows/master_sxltest.yml @@ -0,0 +1,57 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy ASP app to Azure Web App - sxltest + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup MSBuild path + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Setup NuGet + uses: NuGet/setup-nuget@v1.0.5 + + - name: Restore NuGet packages + run: nuget restore + + - name: Publish to folder + run: msbuild /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="\published\" + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v2 + with: + name: ASP-app + path: '/published/**' + + deploy: + runs-on: windows-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: ASP-app + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: 'sxltest' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_5ABD5BFC719E4E019A5A6E9D514B97D0 }} + package: . From 7d05d6794b6e6c8777c59909a2ef88b82814eb15 Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 18:50:46 +0000 Subject: [PATCH 6/7] sxltest_prod_21mar23_1850pm --- aspnet-get-started/Views/Home/Index.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet-get-started/Views/Home/Index.cshtml b/aspnet-get-started/Views/Home/Index.cshtml index 1429532e..950adb81 100644 --- a/aspnet-get-started/Views/Home/Index.cshtml +++ b/aspnet-get-started/Views/Home/Index.cshtml @@ -3,8 +3,8 @@ }
-

Synextra πŸ’œ Conor

-

Dean is extremely old.

+

πŸ’œSynextra - Landing Zone - Sandbox - PROD

+

This is the Production branch for the "Sandbox App Service" 'sxltest'

From f7b308f15ecaed4d1effa47ee9a1cb6750af9b29 Mon Sep 17 00:00:00 2001 From: conortracey <128509249+conortracey@users.noreply.github.com> Date: Tue, 21 Mar 2023 18:57:29 +0000 Subject: [PATCH 7/7] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/prod_sxltest.yml | 57 ++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/prod_sxltest.yml diff --git a/.github/workflows/prod_sxltest.yml b/.github/workflows/prod_sxltest.yml new file mode 100644 index 00000000..9a9929c3 --- /dev/null +++ b/.github/workflows/prod_sxltest.yml @@ -0,0 +1,57 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy ASP app to Azure Web App - sxltest + +on: + push: + branches: + - prod + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + + - name: Setup MSBuild path + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Setup NuGet + uses: NuGet/setup-nuget@v1.0.5 + + - name: Restore NuGet packages + run: nuget restore + + - name: Publish to folder + run: msbuild /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="\published\" + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v2 + with: + name: ASP-app + path: '/published/**' + + deploy: + runs-on: windows-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: ASP-app + + - name: Deploy to Azure Web App + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: 'sxltest' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_FA748E46EC394BF0829D87A2715ACBEE }} + package: .