Skip to content

Ensure the apptainer image tag is the release name on release, or "la… #5

Ensure the apptainer image tag is the release name on release, or "la…

Ensure the apptainer image tag is the release name on release, or "la… #5

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
deploy-pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# make sure we have version info
- run: git fetch --tags
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python --version
pip install -U build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}