Skip to content

Commit

Permalink
🐍 Publish module in pipy
Browse files Browse the repository at this point in the history
  • Loading branch information
mvillasante committed Jul 25, 2023
1 parent 0f17f28 commit cb162b1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,26 @@ jobs:
tag: "latest"
message: "Latest release"
force_push_tag: true
- name: Set up Python 3.9
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution πŸ“¦ to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}
skip_existing: true

0 comments on commit cb162b1

Please sign in to comment.