Skip to content

Commit

Permalink
Add or update the App Service deployment workflow configuration from …
Browse files Browse the repository at this point in the history
…Azure Portal.
  • Loading branch information
sommersoft committed May 30, 2020
1 parent af03c8f commit 8df669d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/master_physaci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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 Python app to Azure Web App - physaci

on:
push:
branches:
- master

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Set up Python version
uses: actions/setup-python@v1
with:
python-version: '3.7'

- name: Build using AppService-Build
uses: azure/appservice-build@v1
with:
platform: python

- name: 'Deploy to Azure Web App'
uses: azure/webapps-deploy@v1
with:
app-name: 'physaci'
slot-name: 'production'
publish-profile: ${{ secrets.AzureAppService_PublishProfile_4e92bde43d604530a3bf366d0fc7e028 }}

0 comments on commit 8df669d

Please sign in to comment.