Skip to content

Removed v2 ci workflow as it is merged #10

Removed v2 ci workflow as it is merged

Removed v2 ci workflow as it is merged #10

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+-release
jobs:
build-n-publish:
name: Publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '>=3.9 <3.12'
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Install Requirements
run: |
python -m pip install --upgrade pip
pip install torch>=2.0 --index-url https://download.pytorch.org/whl/cpu # Ensure CPU torch version
pip install -r requirements_build.txt
- name: Build a source tarball
run: >-
python3 -m
build
--sdist
--outdir dist/
--no-isolation
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}