Azure functions deploy from github actions results in Error: connect ECONNREFUSED 127.0.0.1:443
问题 I have the following yaml file in my .github/workflows folder which I got from here. name: Deploy Python project to Azure Function App on: [push] env: AZURE_FUNCTIONAPP_NAME: zypp-covid # set this to your application's name AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root PYTHON_VERSION: '3.8' # set this to the python version to use (supports 3.6, 3.7, 3.8) jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: