Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
pgm committed Jan 9, 2025
1 parent 1502180 commit afe5b01
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish_breadbox_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ on:

jobs:
publish-breadbox-client:
env:
POETRY_CACHE_DIR: "${{ env.HOME }}/.cache/pypoetry"
runs-on: ubuntu-latest
steps:
- name: "Compute poetry cache dir"
id: "poetry-cachedir"
run: 'echo POETRY_CACHEDIR="$HOME/.cache/pypoetry" >> "$GITHUB_OUTPUT"'
- name: "Check out"
uses: actions/checkout@v3
with:
Expand All @@ -32,7 +33,7 @@ jobs:
uses: actions/cache@v2
id: cached-poetry-dependencies
with:
path: "${{ env.POETRY_CACHE_DIR }}"
path: "${{ steps.poetry-cachedir.outputs.POETRY_CACHEDIR }}"
key: "breadbox-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('breadbox*/**/poetry.lock') }}"

- name: "Install breadbox python dependencies"
Expand All @@ -48,7 +49,7 @@ jobs:
run: "poetry run ./bb update-client"

- name: "peek at poetry cachedir"
run: "ls -l ${{ env.POETRY_CACHE_DIR }}/*"
run: "ls -l ${{ steps.poetry-cachedir.outputs.POETRY_CACHEDIR }}/*"

- name: "Set up authentication for publishing breadbox client"
working-directory: "./breadbox-client"
Expand Down

0 comments on commit afe5b01

Please sign in to comment.