Skip to content

Commit 4ee9446

Browse files
committed
fix tag workflow
1 parent 1b49a81 commit 4ee9446

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tag.yml

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ on:
55
- 'v[0-9]+.[0-9]+.[0-9]+'
66

77
jobs:
8+
build:
9+
runs-on: "ubuntu-latest"
10+
steps:
11+
- uses: "actions/checkout@v4"
12+
with:
13+
fetch-depth: 0
14+
- uses: "actions/setup-python@v5"
15+
with:
16+
python-version: "3.x"
17+
- run: "python -m pip install --upgrade build"
18+
- run: "python -m build ."
19+
- uses: "actions/upload-artifact@v4"
20+
with:
21+
name: "python-package-distributions"
22+
path: "dist/"
823
pypi:
924
environment:
1025
name: "test.pypi.org"

0 commit comments

Comments
 (0)