-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using GH action and bumpver to release the new version.
- Loading branch information
Showing
2 changed files
with
122 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,108 @@ | ||
--- | ||
name: Publish on Test PyPI and PyPI | ||
|
||
on: | ||
push: | ||
branches: | ||
# Commits pushed to release/ branches are published on Test PyPI if they | ||
# have a new version number. | ||
- release/** | ||
tags: | ||
# Tags that start with the "v" prefix are published on PyPI. | ||
- v* | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install pypa/build | ||
run: python -m pip install build | ||
|
||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--wheel | ||
--outdir dist/ | ||
- name: Upload distribution artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: release | ||
path: dist/ | ||
|
||
publish-test: | ||
|
||
name: Build and publish on TestPyPI | ||
if: > | ||
startsWith(github.ref, 'refs/heads/release/') || | ||
startsWith(github.ref, 'refs/tags/') | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: Test PyPI | ||
url: https://test.pypi.org/project/widget-bandsplot/ | ||
|
||
steps: | ||
- uses: actions/download-artifact@v2 | ||
name: Download distribution artifact | ||
with: | ||
name: release | ||
path: dist/ | ||
|
||
- name: Publish distribution on Test PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
if: startsWith(github.ref, 'refs/heads/release/') | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
skip_existing: true | ||
|
||
publish: | ||
|
||
name: Build and publish on PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
|
||
needs: [build] | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: PyPI | ||
url: https://pypi.org/project/widget-bandsplot/ | ||
|
||
steps: | ||
|
||
- uses: actions/download-artifact@v2 | ||
name: Download distribution artifact | ||
with: | ||
name: release | ||
path: dist/ | ||
|
||
- uses: softprops/[email protected] | ||
name: Create release | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
with: | ||
files: | | ||
dist/* | ||
generate_release_notes: true | ||
|
||
- name: Publish distribution on PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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