Skip to content

chore: max_consecutive_auto_reply set to 4 with custom model #7

chore: max_consecutive_auto_reply set to 4 with custom model

chore: max_consecutive_auto_reply set to 4 with custom model #7

Workflow file for this run

name: Publish to Pypi
on:
push:
branches:
- feat/custom-model-support
tags:
- "v*.*.*"
jobs:
Publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Check types
run: poetry run build-check
- name: Release to pypi
run: poetry publish --build --username __token__ --password ${{ secrets.PYPI_ACCESS_TOKEN }}