Add test release workflow #3
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 eddy-footprint to TestPyPI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
publish-testpypi: | |
name: Publish to Test PyPI | |
runs-on: ubuntu-latest | |
if: github.repository == 'arctic-carbon/eddy-footprint' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
# fetch all history so that setuptools-scm works | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: python -m pip install build | |
- name: Fix up version string for TestPyPI | |
if: ${{ !startsWith(github.ref, 'refs/tags') }} | |
run: | | |
sed --in-place "s/node-and-date/no-local-version/g" pyproject.toml | |
- name: Build tarball and wheels | |
run: | | |
python -m build | |
echo "Generated files:" | |
ls -lh dist/ | |
- name: Verify the built dist/wheel is valid | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install dist/eddy_footprint*.whl | |
python -c "import eddy_footprint; print(eddy_footprint.__version__)" | |
- name: Publish package to TestPyPI | |
uses: pypa/[email protected] | |
with: | |
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
repository-url: https://test.pypi.org/legacy/ | |
# verbose: true |