Skip to content

Refactor rerun_invocation to use /request as the source of arguments. #1056

Refactor rerun_invocation to use /request as the source of arguments.

Refactor rerun_invocation to use /request as the source of arguments. #1056

Workflow file for this run

name: Deploy
on: [push, pull_request]
jobs:
build_packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: pip
- name: Install tox
run: |
python3 -m pip install 'tox>=1.8.0'
- name: Create and check sdist and wheel packages
run: tox -e build
- uses: actions/upload-artifact@v5
with:
name: packages
path: dist/
pypi-publish:
needs: [build_packages]
name: Upload release to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && github.repository_owner == 'galaxyproject'
steps:
- uses: actions/download-artifact@v6
with:
name: packages
path: dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1