From dad7b2177bee96750fd921a863e769204a48cd4e Mon Sep 17 00:00:00 2001 From: Dmitry Kozlov Date: Tue, 19 Nov 2024 10:17:19 +0100 Subject: [PATCH] Add or update the Azure App Service build and deployment workflow config --- .../develop_data-source-functions.yml | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/develop_data-source-functions.yml diff --git a/.github/workflows/develop_data-source-functions.yml b/.github/workflows/develop_data-source-functions.yml new file mode 100644 index 0000000..6a7daaa --- /dev/null +++ b/.github/workflows/develop_data-source-functions.yml @@ -0,0 +1,52 @@ +# 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 - data-source-functions + +on: + push: + branches: + - develop + workflow_dispatch: + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + DOTNET_VERSION: '8.0.x' # set this to the dotnet version to use + +jobs: + build-and-deploy: + runs-on: windows-latest + permissions: + id-token: write #This is required for requesting the JWT + + 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: Login to Azure + uses: azure/login@v2 + with: + client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_F1F0122F19484BB2858796558B0D19C9 }} + tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_2C4D4BECD44F46F5B6E6CA8ABD485841 }} + subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_29B57699ACA7440BB8E138E8DA7FB705 }} + + - name: 'Run Azure Functions Action' + uses: Azure/functions-action@v1 + id: fa + with: + app-name: 'data-source-functions' + slot-name: 'Production' + package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output' + \ No newline at end of file