Skip to content

Improve reference list generation, Compatibility with cohere embedding models #11

Improve reference list generation, Compatibility with cohere embedding models

Improve reference list generation, Compatibility with cohere embedding models #11

Workflow file for this run

name: Upload to PyPi
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies and Build
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1