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 ad75182 commit a36afe8Copy full SHA for a36afe8
.github/workflows/release.yml
@@ -39,19 +39,6 @@ jobs:
39
virtualenvs-create: true
40
virtualenvs-in-project: true
41
42
- # Load cached dependencies
43
- - name: Load cached venv
44
- id: cache-dependencies
45
- uses: actions/cache@v3
46
- if: ${{ steps.release.outputs.release_created == 'true' }}
47
- with:
48
- path: .venv
49
- key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
50
-
51
- # Install dependencies
52
- - if: ${{ steps.release.outputs.release_created == 'true' && steps.cache-dependencies.outputs.cache-hit != 'true' }}
53
- run: poetry install --all-extras
54
55
# Configure basic credentials for PyPI
56
- run: poetry config pypi-token.pypi "${{ secrets.PYPI_PASSWORD }}"
57
if: ${{ steps.release.outputs.release_created == 'true' }}
0 commit comments