Merge pull request #33 from elgohr-update/master #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 - grades-app | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
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@v2 | |
with: | |
platform: python | |
platform-version: '3.7' | |
- name: 'Deploy to Azure Web App' | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'grades-app' | |
slot-name: 'production' | |
publish-profile: ${{ secrets.AzureAppService_PublishProfile_eb7c1f1c6a274a8c904979f59a891c40 }} |