Skip to content

Commit

Permalink
Remove pip cache from publishing workflows
Browse files Browse the repository at this point in the history
The cache automatically looks for requirements.txt files, which breaks
for our repo. For now, just remove the caching. It can be redone
against the workflows dir in the future.
  • Loading branch information
sirosen committed Feb 27, 2023
1 parent ac5cc6c commit 0cc06f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish_to_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip

- run: python -m pip install build
- run: python -m build .
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish_to_test_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip

- run: python -m pip install build
- run: python -m build .
Expand Down

0 comments on commit 0cc06f2

Please sign in to comment.