| 123456789101112131415161718192021222324252627282930313233343536 |
- 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@v4
- with:
- fetch-depth: 0
- - name: Install Git
- run: sudo apt-get update && sudo apt-get install -y git
- - uses: actions/setup-node@v4
- with:
- node-version: 22
- - uses: actions/setup-python@v5
- 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
|