Skip to content

Build and upload to PyPi #5

Build and upload to PyPi

Build and upload to PyPi #5

Workflow file for this run

name: Build and upload to PyPi
on:
push:
tags:
- "*"
release:
types:
- published
jobs:
test_pypi_push:
environment:
name: deploy
url: https://test.pypi.org/p/numkit
permissions:
id-token: write
if: |
github.repository == 'Becksteinlab/numkit' &&
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
name: "TestPyPi: Build, upload and test pure Python wheels"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: testpypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
with:
test_submission: true
package_name: 'numkit'
pypi_push:
environment:
name: deploy
url: https://pypi.org/p/numkit
permissions:
id-token: write
if: |
github.repository == 'MDAnalysis/mda-xdrlib' &&
(github.event_name == 'release' && github.event.action == 'published')
name: "PyPi: Build and upload pure Python wheels"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: pypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'release' && github.event.action == 'published'
with:
package_name: 'numkit'