forked from open-webui/open-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 889 Bytes
/
Copy pathrelease-pypi.yml
File metadata and controls
36 lines (34 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Release to PyPI
on:
push:
branches:
- main # or whatever branch you want to use
- pypi-release
jobs:
release:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/open-webui
permissions:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install Git
run: sudo apt-get update && sudo apt-get install -y git
- uses: actions/setup-node@v5
with:
node-version: 22
- uses: actions/setup-python@v6
with:
python-version: 3.11
- name: Build
run: |
python -m pip install --upgrade pip
pip install build
python -m build .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1