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 2c8b637 commit 4cc9bd7Copy full SHA for 4cc9bd7
.github/workflows/publish.yml
@@ -32,16 +32,11 @@ jobs:
32
uses: actions/setup-python@v4
33
with:
34
python-version: 3.11
35
- - name: Cache pip
36
- uses: actions/cache@v3
37
- with:
38
- path: ~/.cache/pip
39
- key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
40
- restore-keys: ${{ runner.os }}-pip-
+ cache: 'pip'
41
- name: Install dependencies
42
run: |
43
- python3 -m pip install poetry
44
- python3 -m pip install -r requirements.txt
+ pip install poetry
+ pip install -r requirements.txt
45
- name: Publish package to PyPI
46
env:
47
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
0 commit comments