eShopOnWeb Build and Test #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: eShopOnWeb Build and Test | |
| #Triggers (uncomment line below to use it) | |
| on: workflow_dispatch | |
| #Environment variables https://docs.github.com/en/actions/learn-github-actions/environment-variables | |
| env: | |
| RESOURCE-GROUP: rg-eshoponweb-westeurope | |
| LOCATION: westeurope | |
| TEMPLATE-FILE: infra/webapp.bicep | |
| SUBSCRIPTION-ID: 45c689f9-48ac-4c1f-94ba-1f700ecd5bb7 | |
| WEBAPP-NAME: devops-webapp-westeurope-1158517296 | |
| jobs: | |
| #Build, test and publish .net web project in repository | |
| buildandtest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| #checkout the repository | |
| - uses: actions/checkout@v4 | |
| #prepare runner for desired .net version SDK | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| dotnet-quality: 'preview' | |
| - name: Restore dependencies | |
| run: dotnet restore ./eShopOnWeb.sln | |
| #Build/Test/Publish the .net project | |
| - name: Build with dotnet | |
| run: dotnet build ./eShopOnWeb.sln --configuration Release | |
| - name: Test with dotnet | |
| run: dotnet test ./eShopOnWeb.sln --configuration Release | |
| - name: dotnet publish | |
| run: | | |
| dotnet publish ./src/Web/Web.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp | |
| cd ${{env.DOTNET_ROOT}}/myapp | |
| zip -r ../app.zip . | |
| # upload the published website code artifacts | |
| - name: Upload artifact for deployment job | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: .net-app | |
| path: ${{env.DOTNET_ROOT}}/app.zip | |
| # upload the bicep template as artifacts for next job | |
| - name: Upload artifact for deployment job | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: bicep-template | |
| path: ${{ env.TEMPLATE-FILE }} | |
| # Use Bicep to deploy infrastructure + Publish webapp | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: buildandtest | |
| environment: | |
| name: 'Development' | |
| steps: | |
| #Download the publish files created in previous job | |
| - name: Download artifact from build job | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: .net-app | |
| path: .net-app | |
| #Download the bicep templates from previous job | |
| - name: Download artifact from build job | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: bicep-template | |
| path: bicep-template | |
| #Login in your azure subscription using a service principal (credentials stored as GitHub Secret in repo) | |
| - name: Azure Login | |
| uses: azure/login@v2 | |
| with: | |
| creds: ${{ secrets.AZURE_CREDENTIALS }} | |
| - name: Upgrade Azure CLI | |
| run: | | |
| az upgrade --yes | |
| az version | |
| # Deploy Azure WebApp using Bicep file | |
| - name: Deploy to Azure | |
| uses: azure/arm-deploy@v2 | |
| with: | |
| subscriptionId: ${{ env.SUBSCRIPTION-ID }} | |
| resourceGroupName: ${{ env.RESOURCE-GROUP }} | |
| template: bicep-template/webapp.bicep | |
| parameters: 'webAppName=${{ env.WEBAPP-NAME }} location=${{ env.LOCATION }}' | |
| failOnStdErr: false | |
| skipTemplateValidation: true | |
| # Publish website to Azure App Service (WebApp) | |
| # Step disabled due to issue where the site sometimes can't be found: https://github.com/microsoft/pipelines-appservice-lib/issues/56. Instead deploy using CLI | |
| - name: Publish Website to WebApp | |
| if: false #Disable step due to comment above | |
| uses: Azure/webapps-deploy@v3 | |
| with: | |
| type: ZIP | |
| app-name: ${{ env.WEBAPP-NAME }} | |
| package: .net-app/app.zip | |
| # Publish website to Azure App Service using CLI (WebApp) | |
| - name: Publish Website to WebApp | |
| uses: Azure/cli@v2 | |
| with: | |
| inlineScript: | | |
| az webapp deploy --name ${{ env.WEBAPP-NAME }} --resource-group ${{ env.RESOURCE-GROUP }} --src-path .net-app/app.zip --type zip |