Skip to content

Commit 0c01ba9

Browse files
committed
Fix publish-test workflow: Remove cache conditional
- Always run poetry install (not just on cache miss) - Ensures fresh install with system dependencies (krb5) - Matches pattern used in integration.yml
1 parent a514ca2 commit 0c01ba9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/publish-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ jobs:
4141
path: .venv
4242
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
4343
#----------------------------------------------
44-
# install dependencies if cache does not exist
44+
# install dependencies
4545
#----------------------------------------------
4646
- name: Install dependencies
47-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
4847
run: poetry install --no-interaction --no-root
4948
#----------------------------------------------
5049
# Get the current version and increment it (test-pypi requires a unique version number)

0 commit comments

Comments
 (0)