Update artifact pull name #20
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 release" | |
on: | |
push: | |
branches: | |
- sroet-patch-1 | |
release: | |
types: | |
- published | |
# Following: https://docs.pypi.org/trusted-publishers/using-a-publisher/ | |
# and https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
jobs: | |
build-release: | |
runs-on: [self-hosted, linux, x64, gpu] | |
container: | |
image: continuumio/miniconda3 | |
options: --runtime=nvidia --gpus all | |
steps: | |
- name: Pull code | |
uses: actions/checkout@v4 | |
- name: Install build and twine | |
run: | | |
python -m pip install --upgrade build twine | |
- name: build distributions | |
run: | | |
python -m build | |
- name: twine check distributions | |
run: | | |
python -m twine check dist/* | |
- name: Store the distribution packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: match-pick-distributions | |
path: dist/ | |
publish-to-testpypi: | |
name: publish to test-pypi | |
needs: build-release | |
runs-on: ubuntu-latest | |
#environment: release | |
permissions: | |
id-token: write | |
steps: | |
- name: Download all the dists | |
uses: actions/download-artifact@v4 | |
with: | |
name: match-pick-distributions | |
path: dist/ | |
- name: Publish package distributions to TestPyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
test-testpypi: | |
name: test testpypi deployment | |
needs: publish-to-testpypi | |
runs-on: [self-hosted, linux, x64, gpu] | |
container: | |
image: continuumio/miniconda3 | |
options: --runtime=nvidia --gpus all | |
steps: | |
- name: Download conda dependencies | |
run: | | |
conda install -y -c conda-forge python=3 cupy cuda-version=11.8 | |
- name: Install from testPyPi | |
run: | | |
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ pytom-match-pick[plotting] | |
- name: Run tests on the installed package | |
run: | | |
python -m unittest discover tests/ | |
publish-to-pypi: | |
name: publish to pypi | |
needs: [build-release, test-testpypi] | |
runs-on: ubuntu-latest | |
#environment: release | |
permissions: | |
id-token: write | |
steps: | |
- name: Download all the dists | |
uses: actions/download-artifact@v4 | |
with: | |
name: match-pick-distributions | |
path: dist/ | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |