-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from Becksteinlab/auto-deploy
- new GHA workflow deploy.yaml using MDAnalysis/pypi-deployment action - add Trusted Publisher Management for PyPi and TestPyPi (externally done) - Additional fixes - make RTD work again by mamba-installing dependencies - update sphinx conf.py
- Loading branch information
Showing
5 changed files
with
78 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Build and upload to PyPi | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
test_pypi_push: | ||
environment: | ||
name: TestPyPi | ||
url: https://test.pypi.org/p/propkatraj | ||
permissions: | ||
id-token: write | ||
if: | | ||
github.repository == 'Becksteinlab/propkatraj' && | ||
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) | ||
name: "TestPyPi: Build and upload 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: 'propkatraj' | ||
module_name: 'propkatraj' | ||
tests: true | ||
|
||
pypi_push: | ||
environment: | ||
name: PyPi | ||
url: https://pypi.org/p/propkatraj | ||
permissions: | ||
id-token: write | ||
if: | | ||
github.repository == 'Becksteinlab/propkatraj' && | ||
(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: 'propkatraj' | ||
module_name: 'propkatraj' | ||
tests: true |
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
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
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
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