Skip to content

Commit

Permalink
Create dev_pwabuilder-ios(prod).yml
Browse files Browse the repository at this point in the history
  • Loading branch information
khmyznikov committed Jun 8, 2023
1 parent a0be8f2 commit 91ece5d
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/dev_pwabuilder-ios(prod).yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# 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: .

0 comments on commit 91ece5d

Please sign in to comment.