Skip to content

Fix odd ROOT file naming bug #70

Fix odd ROOT file naming bug

Fix odd ROOT file naming bug #70

Workflow file for this run

name: Push to PyPI
on:
release:
types: [released, prereleased]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build
- name: Build the servicex wheel
env:
servicex_version: ${{ github.ref }}
run: |
python -m build --sdist --wheel
- name: Publish servicex to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_PASSWORD_SERVICEX }}
print_hash: true