Pin pys2index >=0.1.5 in osx environment (#3792) #630
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: PyPi Build and Deploy 🐍📦 | |
on: | |
release: | |
types: [published] | |
# use this for testing | |
push: | |
branches: | |
- main | |
jobs: | |
build-n-publish: | |
name: Build and publish ESMValTool on PyPi | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.12" | |
- name: Install pep517 | |
run: >- | |
python -m | |
pip install | |
pep517 | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: >- | |
python -m | |
pep517.build | |
--source | |
--binary | |
--out-dir dist/ | |
. | |
# Publish on Test PyPi; uncomment to test | |
# and remember to adjust the triggers above | |
# - name: Publish distribution 📦 to Test PyPI | |
# uses: pypa/gh-action-pypi-publish@master | |
# with: | |
# password: ${{ secrets.test_pypi_password }} | |
# repository_url: https://test.pypi.org/legacy/ | |
# Publish on PyPi | |
- name: Publish distribution 📦 to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |