openai/chatkit-python

Public

mirrored from https://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.5.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/release.yml

36lines · modeblame

f688d870victor-openai8 months ago1name: Release PyPI
2
3on:
4release:
5types:
6- published
7workflow_dispatch:
8
9permissions:
10contents: read
11id-token: write
12
13jobs:
14release:
15name: Release PyPI
16environment:
17name: pypi
ba7ff344Jiwon Kim8 months ago18url: https://pypi.org/p/openai-chatkit
f688d870victor-openai8 months ago19runs-on: ubuntu-latest
20steps:
21- name: Checkout repository
4089dc06Salman Muin Kayser Chishti6 months ago22uses: actions/checkout@v6
f688d870victor-openai8 months ago23
24- name: Setup uv
25uses: astral-sh/setup-uv@v5
26with:
27enable-cache: true
28
29- name: Install dependencies
30run: make install
31
32- name: Build package
33run: make build
ba7ff344Jiwon Kim8 months ago34
f688d870victor-openai8 months ago35- name: Publish to PyPI
36uses: pypa/gh-action-pypi-publish@release/v1