From 33621a79e4a350b1ba58661b48e148fa1db19917 Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Wed, 25 Sep 2024 09:46:29 -0700 Subject: [PATCH] Generate poetry.lock before caching (#63) Our Github Actions build cache step is subtly broken. (see comment below) --- .github/actions/setup-poetry-env/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup-poetry-env/action.yml b/.github/actions/setup-poetry-env/action.yml index a6b07139..ad665590 100644 --- a/.github/actions/setup-poetry-env/action.yml +++ b/.github/actions/setup-poetry-env/action.yml @@ -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