Generate poetry.lock before caching (#63)
Our Github Actions build cache step is subtly broken. (see comment below)
This commit is contained in:
parent
7d9354b4b4
commit
33621a79e4
1 changed files with 4 additions and 0 deletions
4
.github/actions/setup-poetry-env/action.yml
vendored
4
.github/actions/setup-poetry-env/action.yml
vendored
|
|
@ -20,6 +20,10 @@ runs:
|
|||
with:
|
||||
virtualenvs-in-project: true
|
||||
|
||||
- name: Generate poetry.lock
|
||||
run: cd arcade && poetry lock --no-update
|
||||
shell: bash
|
||||
|
||||
- name: Load cached venv
|
||||
id: cached-poetry-dependencies
|
||||
uses: actions/cache@v4
|
||||
|
|
|
|||
Loading…
Reference in a new issue