-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from nexB/release-prep
Release prep
- Loading branch information
Showing
9 changed files
with
202 additions
and
75 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 |
---|---|---|
@@ -1,27 +1,83 @@ | ||
name: Release library as a PyPI wheel and sdist on GH release creation | ||
name: Create library release archives, create a GH release and publish PyPI wheel and sdist on tag in main branch | ||
|
||
|
||
# This is executed automatically on a tag in the main branch | ||
|
||
# Summary of the steps: | ||
# - build wheels and sdist | ||
# - upload wheels and sdist to PyPI | ||
# - create gh-release and upload wheels and dists there | ||
# TODO: smoke test wheels and sdist | ||
# TODO: add changelog to release text body | ||
|
||
# WARNING: this is designed only for packages building as pure Python wheels | ||
|
||
on: | ||
release: | ||
types: [created] | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
jobs: | ||
build-and-publish-to-pypi: | ||
build-pypi-distribs: | ||
name: Build and publish library to PyPI | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
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: Upload built archives | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pypi_archives | ||
path: dist/* | ||
|
||
|
||
create-gh-release: | ||
name: Create GH release | ||
needs: | ||
- build-pypi-distribs | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Download built archives | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: pypi_archives | ||
path: dist | ||
|
||
- name: Create GH release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
draft: true | ||
files: dist/* | ||
|
||
|
||
create-pypi-release: | ||
name: Create PyPI release | ||
needs: | ||
- create-gh-release | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
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 | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
|
||
- name: Download built archives | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: pypi_archives | ||
path: dist | ||
|
||
- name: Publish to PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
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
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
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
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 |
---|---|---|
@@ -1,24 +1,31 @@ | ||
aboutcode-toolkit==7.0.1 | ||
bleach==4.1.0 | ||
aboutcode-toolkit==7.0.2 | ||
black==22.6.0 | ||
bleach==5.0.1 | ||
build==0.7.0 | ||
commonmark==0.9.1 | ||
docutils==0.18.1 | ||
docutils==0.19 | ||
et-xmlfile==1.1.0 | ||
execnet==1.9.0 | ||
iniconfig==1.1.1 | ||
jeepney==0.7.1 | ||
keyring==23.4.1 | ||
openpyxl==3.0.9 | ||
isort==5.10.1 | ||
jeepney==0.8.0 | ||
keyring==23.7.0 | ||
mypy-extensions==0.4.3 | ||
openpyxl==3.0.10 | ||
pathspec==0.9.0 | ||
pep517==0.12.0 | ||
pkginfo==1.8.2 | ||
pkginfo==1.8.3 | ||
platformdirs==2.5.2 | ||
py==1.11.0 | ||
pytest==7.0.1 | ||
pytest==7.1.2 | ||
pytest-forked==1.4.0 | ||
pytest-xdist==2.5.0 | ||
readme-renderer==34.0 | ||
readme-renderer==35.0 | ||
requests-toolbelt==0.9.1 | ||
rfc3986==1.5.0 | ||
rich==12.3.0 | ||
rfc3986==2.0.0 | ||
rich==12.5.1 | ||
secretstorage==3.3.2 | ||
tomli==1.2.3 | ||
twine==3.8.0 | ||
tomli==2.0.1 | ||
tqdm==4.64.0 | ||
twine==4.0.1 | ||
typing_extensions==4.3.0 |
Oops, something went wrong.