Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
rjfarmer committed Jul 10, 2024
1 parent a1c8f3a commit 16774aa
Showing 1 changed file with 29 additions and 25 deletions.
54 changes: 29 additions & 25 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,40 @@
name: Publish Python 🐍 distribution 📦 to PyPI

on: push
name: Publish to pypi
on: [push]

jobs:
build:
name: Build distribution 📦
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest

environment:
name: pypi
url: https://pypi.org/p/gfort2py
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
python-version: '3.x'
cache: 'pip'

- name: Install dependices
run: |
python -m pip install --upgrade pip
python -m pip install build wheel pytest
- name: Build a binary wheel and a source tarball
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
--sdist
--wheel
--outdir dist/
.
- name: Test
run: |
python -m pip install dist/mesaPlot*.tar.gz
python -m pytest
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/mesaPlot
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

0 comments on commit 16774aa

Please sign in to comment.