We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b49a81 commit 4ee9446Copy full SHA for 4ee9446
.github/workflows/tag.yml
@@ -5,6 +5,21 @@ on:
5
- 'v[0-9]+.[0-9]+.[0-9]+'
6
7
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
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
21
+ name: "python-package-distributions"
22
+ path: "dist/"
23
pypi:
24
environment:
25
name: "test.pypi.org"
0 commit comments