Merge pull request #85 from HERA-Team/test-ci #550
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: Deploy to PyPI | |
on: push | |
jobs: | |
build-n-publish: | |
name: Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- uses: actions/checkout@master | |
# https://github.com/ansible/pylibssh/blob/1e7b17f/.github/workflows/build-test-n-publish.yml#L146-L151 | |
- name: Get history and tags for SCM versioning to work | |
run: | | |
git fetch --prune --unshallow | |
git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
git describe --tags | |
git describe --tags $(git rev-list --tags --max-count=1) | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Install pep517 | |
run: | | |
python -m pip install build | |
python -m pip install setuptools_scm setuptools>42 | |
- name: Create setuptools_scm env variable | |
if: startsWith(github.ref, 'refs/tags/') != true | |
shell: bash | |
run: | | |
wget https://gist.github.com/plaplant/0902f09e59166bac742bbd554f3cd2f9/raw/make_dev_version.sh -O ../make_dev_version.sh | |
version=$(bash ../make_dev_version.sh) | |
echo "SETUPTOOLS_SCM_PRETEND_VERSION=$version" >> $GITHUB_ENV | |
- name: Build a binary wheel and a source tarball | |
run: python -m build | |
# deploy to Test PyPI on any push except when merging to master, since that will | |
# already exist, and thus fail. | |
- name: Publish distribution 📦 to Test PyPI | |
if: ${{ !contains(github.ref, 'main') }} | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository_url: https://test.pypi.org/legacy/ | |
skip_existing: true | |
# deploy to actual PyPI only when a tag is pushed to main | |
- name: Publish distribution 📦 to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
skip_existing: true |