Skip to content

Commit

Permalink
ci: fix path to requirements files
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Teles Sant'Anna <diogoteles@google.com>
  • Loading branch information
diogoteles08 committed Jul 4, 2023
1 parent a87f3d8 commit 18692ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
.github/workflows/publish-requirements.txt
sparse-checkout-cone-mode: false
- name: Install Python dependencies
run: pip install --require-hashes -r publish-requirements.txt
run: pip install --require-hashes -r .github/workflows/publish-requirements.txt

- run: |
echo "OIDC_AUDIENCE=pypi" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ jobs:
sparse-checkout-cone-mode: false
- run: ${{ matrix.PYTHON.BIN_PATH }} -m venv venv
- name: Install Python dependencies
run: venv/bin/pip install --require-hashes -r build-requirements.txt
run: venv/bin/pip install --require-hashes -r .github/workflows/build-requirements.txt
- run: mkdir wheelhouse
- name: Build the wheel
run: |
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
.github/workflows/build-requirements.txt
sparse-checkout-cone-mode: false
- name: Install Python dependencies
run: python -m pip install --require-hashes -r build-requirements.txt
run: python -m pip install --require-hashes -r .github/workflows/build-requirements.txt
- run: mkdir wheelhouse
- run: |
if [ -n "${{ matrix.PYTHON.ABI_VERSION }}" ]; then
Expand Down

0 comments on commit 18692ed

Please sign in to comment.