Skip to content

Merge pull request #317 from cta-observatory/slurm-account #24

Merge pull request #317 from cta-observatory/slurm-account

Merge pull request #317 from cta-observatory/slurm-account #24

Workflow file for this run

name: Deploy to PyPi
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python --version
pip install -U build
python -m build
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}