From ee90c11875c573e3023b83cbda3791dd8282fa31 Mon Sep 17 00:00:00 2001 From: Anna Zabolotskaya Date: Sun, 7 Apr 2024 23:12:23 +0200 Subject: [PATCH] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/master_jusper-test-app1.yml | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/master_jusper-test-app1.yml diff --git a/.github/workflows/master_jusper-test-app1.yml b/.github/workflows/master_jusper-test-app1.yml new file mode 100644 index 0000000..70d27c4 --- /dev/null +++ b/.github/workflows/master_jusper-test-app1.yml @@ -0,0 +1,43 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and deploy dotnet core app to Azure Function App - jusper-test-app1 + +on: + push: + branches: + - master + workflow_dispatch: + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + DOTNET_VERSION: '6.0.x' # set this to the dotnet version to use + +jobs: + build-and-deploy: + runs-on: windows-latest + + steps: + - name: 'Checkout GitHub Action' + uses: actions/checkout@v4 + + - name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment + uses: actions/setup-dotnet@v1 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: 'Resolve Project Dependencies Using Dotnet' + shell: pwsh + run: | + pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}' + dotnet build --configuration Release --output ./output + popd + + - name: 'Run Azure Functions Action' + uses: Azure/functions-action@v1 + id: fa + with: + app-name: 'jusper-test-app1' + slot-name: 'Production' + package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_7B6AA654DBB540D18462FA9ABE38856D }} \ No newline at end of file