Skip to content

Commit 6f0c110

Browse files
committed
Fix: v0.14.4
1 parent 2fccca2 commit 6f0c110

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ jobs:
1616
uses: actions/setup-python@v4
1717
with:
1818
python-version: '3.x'
19-
- name: Install dependencies
20-
run: |
21-
python -m pip install --upgrade pip
22-
pip install hatch
2319
- name: Set env var
2420
id: set-env-var-version
2521
run: |
@@ -44,6 +40,15 @@ jobs:
4440
runs-on: ubuntu-latest
4541
needs: create-release
4642
steps:
43+
- uses: actions/checkout@v3
44+
- name: Set up Python
45+
uses: actions/setup-python@v4
46+
with:
47+
python-version: '3.x'
48+
- name: Install dependencies
49+
run: |
50+
python -m pip install --upgrade pip
51+
pip install hatch
4752
- name: Build package
4853
run: hatch build
4954
- name: Publish package

0 commit comments

Comments
 (0)