-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Automate version bump with bumpver. * Automate release with GA.
- Loading branch information
Showing
3 changed files
with
78 additions
and
28 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 |
---|---|---|
|
@@ -13,23 +13,18 @@ on: | |
|
||
jobs: | ||
|
||
build-and-publish-test: | ||
|
||
name: Build and publish on TestPyPI | ||
if: startsWith(github.ref, 'refs/heads/release/') | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
environment: | ||
name: Test PyPI | ||
url: https://test.pypi.org/project/aiidalab-widgets-base/ | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3.8 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
python-version: '3.10' | ||
|
||
- name: Install pypa/build | ||
run: python -m pip install build | ||
|
@@ -41,44 +36,71 @@ jobs: | |
--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/aiidalab-widgets-base/ | ||
|
||
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.PYPI_API_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
skip_existing: true | ||
|
||
build-and-publish: | ||
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/aiidalab-widgets-base/ | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
- uses: actions/download-artifact@v2 | ||
name: Download distribution artifact | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install pypa/build | ||
run: python -m pip install build | ||
name: release | ||
path: dist/ | ||
|
||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--wheel | ||
--outdir 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 | ||
|
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
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