Skip to content

Commit 6d84197

Browse files
committed
Updated publish.yml
1 parent c85a0e1 commit 6d84197

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/python-publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,17 @@ jobs:
1414
permissions:
1515
id-token: write
1616
steps:
17-
# retrieve your distributions here
17+
- 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
1828

1929
- name: Publish package distributions to PyPI
2030
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)