Skip to content

Integrate operations from the Notification API #875

Integrate operations from the Notification API

Integrate operations from the Notification API #875

Workflow file for this run

name: Deploy
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install tox
run: |
python3 -m pip install 'tox>=1.8.0'
- name: Create and check sdist and wheel packages
run: tox -e build
- name: Publish to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && github.repository_owner == 'galaxyproject'
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}