From 439d79ad6d12a03712e5ddcfcf8112fb83105f18 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 13 Jul 2021 17:04:20 -0300 Subject: [PATCH] Add or update the Azure App Service build and deployment workflow config --- .../workflows/master_generalbotsmodels.yml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/master_generalbotsmodels.yml diff --git a/.github/workflows/master_generalbotsmodels.yml b/.github/workflows/master_generalbotsmodels.yml new file mode 100644 index 0000000..a1f53df --- /dev/null +++ b/.github/workflows/master_generalbotsmodels.yml @@ -0,0 +1,38 @@ +# Docs for the Azure Web Apps Deploy action: https://go.microsoft.com/fwlink/?linkid=2134798 +# More GitHub Actions for Azure: https://go.microsoft.com/fwlink/?linkid=2135048 + +name: Azure App Service - generalbotsmodels(Production), Build and deploy Python app + +on: + push: + branches: + - master + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + + steps: + # checkout the repo + - name: 'Checkout Github Action' + uses: actions/checkout@master + + + - name: Set up Python version + uses: actions/setup-python@v1 + with: + python-version: '3.9' + + - name: Build using AppService-Build + uses: azure/appservice-build@v2 + with: + platform: python + platform-version: '3.9' + + - name: Run Azure webapp deploy action using publish profile credentials + uses: azure/webapps-deploy@v2 + with: + app-name: generalbotsmodels + slot-name: Production + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_3BFD0A2EC7464AD1A5905CD8D0B8D8AB }} +