mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
chore: update workflow triggers to use workflow_dispatch
This commit is contained in:
7
.github/workflows/build-release.yml
vendored
7
.github/workflows/build-release.yml
vendored
@@ -1,9 +1,10 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main # or whatever branch you want to use
|
||||
# push:
|
||||
# branches:
|
||||
# - main # or whatever branch you want to use
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
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:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- dev
|
||||
tags:
|
||||
- v*
|
||||
# push:
|
||||
# branches:
|
||||
# - main
|
||||
# - dev
|
||||
# tags:
|
||||
# - v*
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
|
||||
2
.github/workflows/format-build-frontend.yaml
vendored
2
.github/workflows/format-build-frontend.yaml
vendored
@@ -22,6 +22,8 @@ jobs:
|
||||
build:
|
||||
name: 'Format & Build Frontend'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NODE_OPTIONS: '--max-old-space-size=4096'
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
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
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main # or whatever branch you want to use
|
||||
- pypi-release
|
||||
|
||||
# push:
|
||||
# branches:
|
||||
# - main # or whatever branch you want to use
|
||||
# - pypi-release
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user