Skip to content

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 #92

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 #92

# 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.Net Core app to Azure Web App - ie-mode-sample-webapp
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
#global-json-file: global.json
dotnet-version: 8.0.100-preview.1.23115.2
- name: Build with dotnet
run: dotnet build --configuration Release
- name: dotnet publish
run: dotnet publish src/CookieSample -c Release -o myapp --self-contained true --runtime win-x86
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
name: .net-app
path: myapp
deploy:
runs-on: windows-2022
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: .net-app
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'ie-mode-sample-webapp'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_3FCA22D9B89E4234B4E4CD8B12DF7D7A }}
package: .