Skip to content

Commit d7a3ece

Browse files
committed
Adds upload step
1 parent b97aa22 commit d7a3ece

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ jobs:
2222
- name: Checkout ${{ github.repository }}
2323
uses: actions/checkout@v4
2424

25+
# Step 2: Build the package
2526
- name: build
2627
run: |
2728
pip install --upgrade build
2829
python -m build
2930
31+
# Step 3: Upload artifact
32+
- name: Upload build artifact
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: dist # This must match the name used in download step
36+
path: dist/
3037

3138
# Job to publish the built package to PyPI
3239
publish:

0 commit comments

Comments
 (0)