Build and Upload pangoe-forge-esgf to PyPI #14
Workflow file for this run
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
name: Build and Upload pangoe-forge-esgf to PyPI | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build-artifacts: | |
runs-on: ubuntu-latest | |
if: github.repository == 'jbusecke/pangeo-forge-esgf' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install setuptools setuptools-scm[toml] wheel twine | |
- name: Check python version | |
run: | | |
python --version | |
- name: Check current package version | |
run: | | |
python -c "import pangeo_forge_esgf; print(pangeo_forge_esgf.__version__) | |
- name: Build tarball and wheels | |
run: | | |
git clean -xdf | |
git restore -SW . | |
python setup.py sdist bdist_wheel | |
- name: Check built artifacts | |
run: | | |
python -m twine check dist/* | |
pwd | |
if [ -f dist/xmip-0.0.0.tar.gz ]; then | |
echo "❌ INVALID VERSION NUMBER" | |
exit 1 | |
else | |
echo "✅ Looks good" | |
fi | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: releases | |
path: dist | |
test-built-dist: | |
needs: build-artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: 3.8 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: releases | |
path: dist | |
- name: List contents of built dist | |
run: | | |
ls -ltrh | |
ls -ltrh dist | |
upload-to-pypi: | |
if: "!github.event.release.prerelease" | |
needs: test-built-dist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: releases | |
path: dist | |
- name: Publish package to PyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
verbose: true |