mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
Merge branch 'workflow'
This commit is contained in:
commit
f50160194f
3
.github/workflows/build-release.yml
vendored
3
.github/workflows/build-release.yml
vendored
@ -3,7 +3,8 @@ name: Release
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main # or whatever branch you want to use
|
- next # or whatever branch you want to use
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
12
.github/workflows/docker-build.yaml
vendored
12
.github/workflows/docker-build.yaml
vendored
@ -2,12 +2,12 @@ name: Create and publish Docker images with specific build args
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
# push:
|
||||||
branches:
|
# branches:
|
||||||
- main
|
# - main
|
||||||
- dev
|
# - dev
|
||||||
tags:
|
# tags:
|
||||||
- v*
|
# - v*
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
|
2
.github/workflows/format-backend.yaml
vendored
2
.github/workflows/format-backend.yaml
vendored
@ -5,6 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
|
- next
|
||||||
paths:
|
paths:
|
||||||
- 'backend/**'
|
- 'backend/**'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
@ -13,6 +14,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
|
- next
|
||||||
paths:
|
paths:
|
||||||
- 'backend/**'
|
- 'backend/**'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
|
4
.github/workflows/format-build-frontend.yaml
vendored
4
.github/workflows/format-build-frontend.yaml
vendored
@ -5,6 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
|
- next
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'backend/**'
|
- 'backend/**'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
@ -13,6 +14,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
|
- next
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'backend/**'
|
- 'backend/**'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
@ -22,6 +24,8 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
name: 'Format & Build Frontend'
|
name: 'Format & Build Frontend'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: '--max-old-space-size=4096'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
11
.github/workflows/release-pypi.yml
vendored
11
.github/workflows/release-pypi.yml
vendored
@ -1,11 +1,12 @@
|
|||||||
name: Release to PyPI
|
name: Release to PyPI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
# push:
|
||||||
branches:
|
# branches:
|
||||||
- main # or whatever branch you want to use
|
# - main # or whatever branch you want to use
|
||||||
- pypi-release
|
# - pypi-release
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
Reference in New Issue
Block a user