Skip to content

Merge pull request #60 from pwa-builder/amrutha/fix #25

Merge pull request #60 from pwa-builder/amrutha/fix

Merge pull request #60 from pwa-builder/amrutha/fix #25

# 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 - pwabuilder-ios
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: microsoft/variable-substitution@v1
with:
files: './Microsoft.PWABuilder.IOS.Web/appsettings.Production.json'
env:
AppSettings.ApplicationInsightsConnectionString: ${{secrets.APPLICATIONINSIGHTSCONNECTIONSTRING}}
- name: Set up .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: '7.x'
include-prerelease: true
- name: Build with dotnet
working-directory: ./Microsoft.PWABuilder.IOS.Web
run: dotnet build --configuration Release
- name: dotnet publish
working-directory: ./Microsoft.PWABuilder.IOS.Web
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/myapp
deploy:
runs-on: windows-latest
needs: build
environment:
name: 'pre'
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: 'pwabuilder-ios'
slot-name: 'pre'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_30163B2E42ED4EE89DC9D0CA34064518 }}
package: .