Skip to content

Update README.md

Update README.md #17

# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action

Check failure on line 1 in .github/workflows/master_training20231115.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/master_training20231115.yml

Invalid workflow file

`push: branches: - master workflow_dispatch: ` is not a valid event name
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: Build and deploy dotnet core app to Azure Function App - training20231115
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
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@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_27305FD8D29F447B9EFA9103F9C163D0 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_31D7F386F1954E36A94169FD27556B84 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_67FA4772E8584DA8A952C5F0F3C54567 }}
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'training20231115'
slot-name: 'Production'
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'