Ubuntu – Azure App Service – GitHub Action – WEBSITE_RUN_FROM_PACKAGE Not Running
I am using the following GH Action to Build/Publish my .NET API. #https://stackoverflow.com/questions/68327652/error-with-github-action-deploy-to-azure-web-app name: API-zip on: push: # only trigger on branches, not on tags branches: '**' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Setup .NET uses:…