Skip to content

1.0.5

1.0.5 #14

Workflow file for this run

name: Push to PyPI
on:
release:
types: [released, prereleased]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip build
- name: Build the mlflow_slurm wheel
env:
mlflow_slurm_version: ${{ github.ref }}
run: |
python -m build --sdist --wheel
- name: Publish servicex to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password}}