-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update github-actions to publish package
- Loading branch information
1 parent
e43c381
commit 372fec3
Showing
1 changed file
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,21 +9,27 @@ on: | |
- '*' # Push events to every tag not containing / | ||
|
||
jobs: | ||
build-n-publish: | ||
build-and-publish: | ||
name: Build and Publish to PyPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
# https://github.com/marketplace/actions/checkout | ||
- name: Checkout git repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Python3.8 | ||
uses: actions/setup-python@v2 | ||
uses: actions/checkout@v4 | ||
# https://github.com/marketplace/actions/setup-python | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.8 | ||
- name: Build | ||
run: python setup.py sdist | ||
python-version: "3.x" | ||
|
||
# Build #################################################################### | ||
|
||
# https://github.com/marketplace/actions/publish-python-poetry-package | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
# https://github.com/JRubics/poetry-publish/issues/39 | ||
uses: JRubics/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
# https://pypi.org/manage/account/token/ | ||
# https://github.com/<owner>/<repo>/settings/secrets/actions/new | ||
pypi_token: ${{ secrets.PYPI_API_TOKEN }} | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') |