Skip to content

referrer field for ios analytics and readme update #3

referrer field for ios analytics and readme update

referrer field for ios analytics and readme update #3

# 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: pwabuilder-ios to prod
on:
push:
branches:
- main
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
- uses: azure/login@v1
with:
creds: |
{
"clientId": "${{ secrets.AZURE_APP_ID }}",
"clientSecret": "${{ secrets.AZURE_PASSWORD }}",
"subscriptionId": "${{ secrets.AZURE_SUBSCRIPTION_ID }}",
"tenantId": "${{ secrets.AZURE_TENANT_ID }}"
}
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'pwabuilder-ios'
package: .