From 5d356bdc6b2c10bd132f219f6f5510efdb3acb0f Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 21 May 2024 21:02:40 -0700 Subject: [PATCH] Delete release-pypi-test.yml --- .github/workflows/release-pypi-test.yml | 32 ------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/release-pypi-test.yml diff --git a/.github/workflows/release-pypi-test.yml b/.github/workflows/release-pypi-test.yml deleted file mode 100644 index 0ae940ad6..000000000 --- a/.github/workflows/release-pypi-test.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Release to PyPI - -on: - push: - branches: - - main # or whatever branch you want to use - - dev - -jobs: - release: - runs-on: ubuntu-latest - environment: - name: pypi - url: https://pypi.org/p/openwebui - permissions: - id-token: write - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 18 - - 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