Skip to content

Commit 33d25dc

Browse files
committed
fix publish workflow
1 parent c8be602 commit 33d25dc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,24 @@ on:
44
release:
55

66
jobs:
7-
check:
7+
publish:
88
runs-on: ubuntu-latest
99

1010
env:
1111
# Configure a constant location for the uv cache
1212
UV_CACHE_DIR: /tmp/.uv-cache
13-
python_version: "3.13"
1413

1514
steps:
1615
- uses: actions/checkout@v4
1716
- uses: actions/setup-python@v5
1817
with:
19-
python-version: $python_version
18+
python-version: "3.13"
2019

2120
- name: Restore px cache
2221
uses: actions/cache@v4
2322
with:
2423
path: .pyprojectx
25-
key: uv-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
24+
key: px-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
2625
restore-keys: |
2726
px-${{ runner.os }}-3_13-${{ hashFiles('pw.lock') }}
2827
px-${{ runner.os }}

0 commit comments

Comments
 (0)