Skip to content

Update .github/workflows/publish-data-generation-function.yaml #7

Update .github/workflows/publish-data-generation-function.yaml

Update .github/workflows/publish-data-generation-function.yaml #7

name: Deploy DotNet project to Azure Function App
on:
[push]
env:
AZURE_FUNCTIONAPP_NAME: 'dev-aquaplatform-func' # set this to your function app name on Azure
AZURE_FUNCTIONAPP_PACKAGE_PATH: 'src/DataGeneratorFunction' ```

Check failure on line 8 in .github/workflows/publish-data-generation-function.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-data-generation-function.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
DOTNET_VERSION: '8.0.x'
jobs:
build-and-deploy:
runs-on: windows-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v3
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: 'Resolve Project Dependencies Using Dotnet'
shell: pwsh
run: |
pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
dotnet publish --configuration Release --output ./output
popd
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }}