update to identity for deployment #43
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
name: Build, Test and Deploy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
types: [ created ] | |
workflow_dispatch: | |
env: | |
DOTNET_VERSION: '8.0.x' | |
AZURE_FUNCTIONAPP_NAME: 'LuasAPIFunction' | |
AZURE_FUNCTIONAPP_PACKAGE_PATH: './LuasAPI.AzureFunction' | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
6.0.x | |
8.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal | |
build-and-deploy: | |
runs-on: windows-latest | |
needs: build-and-test | |
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_145AC1BCFD3F4AF3BCDBBFD23D1FC58C }} | |
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_342581E108E64446985A202EEC1A224F }} | |
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F51A0FC4A0D44919A2D7585FE6451931 }} | |
- name: 'Run Azure Functions Action' | |
uses: Azure/functions-action@v1 | |
id: fa | |
with: | |
app-name: 'LuasAPIFunction' | |
slot-name: 'Production' | |
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output' | |