openai/chatkit-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.6.4

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
778828a4Drew Hintz3 months ago22uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
f688d870victor-openai8 months ago23
24- name: Setup uv
778828a4Drew Hintz3 months ago25uses: astral-sh/setup-uv@e58605a9b6da7c637471fab8847a5e5a6b8df081 # v5
f688d870victor-openai8 months ago26with:
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
778828a4Drew Hintz3 months ago36uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1