Skip to content

Commit 114a3c8

Browse files
authored
Merge pull request #6 from myakove/fix-publish-to-pypi-action
fix-publish-to-pypi-action
2 parents 9294b30 + 70b1af7 commit 114a3c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ jobs:
1616
python-version: 3.7
1717

1818
- name: Install pypa/build
19-
run: |
19+
run: >-
2020
python -m
2121
pip install
2222
build
2323
--user
2424
2525
- name: Build a binary wheel and a source tarball
26-
run: |
26+
run: >-
2727
python -m
2828
build
2929
--sdist
3030
--outdir dist/
3131
32-
- name: Publish distribution 📦 to PyPI
32+
- name: Publish distribution to PyPI
3333
if: startsWith(github.ref, 'refs/tags')
3434
uses: pypa/gh-action-pypi-publish@master
3535
with:

0 commit comments

Comments
 (0)