Skip to content

Commit 3efe26b

Browse files
committed
fix: path to requirements
1 parent f53fef2 commit 3efe26b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/az_fnapp_deploy.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818
with:
1919
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-
20+
2521
- name: Setup Python ${{ env.PYTHON_VERSION }} Environment
2622
uses: actions/setup-python@v4
2723
with:
@@ -32,7 +28,7 @@ jobs:
3228
run: |
3329
pushd '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
3430
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"
3632
popd
3733
3834
- name: 'Run Azure Functions Action'

0 commit comments

Comments
 (0)