Skip to content

Commit

Permalink
use MDAnalysis deploy & test action for deployment
Browse files Browse the repository at this point in the history
- see PR #33
- automatic deployment to PyPi (release), TestPyPi (tag)
- uses MDAnalysis/pypi-deployment action
- uses PyPi Trusted Publishing (OIDC), which was enabled on PyPi and TestPyPi
  • Loading branch information
orbeckst committed Sep 19, 2024
1 parent 08ae272 commit af866f4
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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'

0 comments on commit af866f4

Please sign in to comment.