We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c85a0e1 commit 6d84197Copy full SHA for 6d84197
.github/workflows/python-publish.yml
@@ -14,7 +14,17 @@ jobs:
14
permissions:
15
id-token: write
16
steps:
17
- # retrieve your distributions here
+ - uses: actions/checkout@v3
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v3
20
+ with:
21
+ python-version: '3.x'
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install build
26
+ - name: Build package
27
+ run: python -m build
28
29
- name: Publish package distributions to PyPI
30
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments