Skip to content

Commit

Permalink
fix publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KotlinIsland committed Oct 29, 2024
1 parent c8be602 commit 33d25dc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,24 @@ on:
release:

jobs:
check:
publish:
runs-on: ubuntu-latest

env:
# Configure a constant location for the uv cache
UV_CACHE_DIR: /tmp/.uv-cache
python_version: "3.13"

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: $python_version
python-version: "3.13"

- name: Restore px cache
uses: actions/cache@v4
with:
path: .pyprojectx
key: uv-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
key: px-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
restore-keys: |
px-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
px-${{ runner.os }}
Expand Down

0 comments on commit 33d25dc

Please sign in to comment.