We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f53fef2 commit 3efe26bCopy full SHA for 3efe26b
.github/workflows/az_fnapp_deploy.yml
@@ -17,11 +17,7 @@ jobs:
17
uses: actions/checkout@v4
18
with:
19
submodules: 'true'
20
-
21
- - name: Configure branch name
22
- id: branch_name
23
- run: echo "GH_REF_NAME=$(echo ${{ github.event.pull_request.head.ref }} | sed 's|/|-|g')" >> $GITHUB_OUTPUT
24
+
25
- name: Setup Python ${{ env.PYTHON_VERSION }} Environment
26
uses: actions/setup-python@v4
27
@@ -32,7 +28,7 @@ jobs:
32
28
run: |
33
29
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
34
30
python -m pip install --upgrade pip
35
- pip install -r requirements.txt --target=".python_packages/lib/site-packages"
31
+ pip install -r ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}requirements.txt --target=".python_packages/lib/site-packages"
36
popd
37
38
- name: 'Run Azure Functions Action'
0 commit comments