Skip to content

Reconcile compose with the deployment (comment out openwebui) #9

Reconcile compose with the deployment (comment out openwebui)

Reconcile compose with the deployment (comment out openwebui) #9

Workflow file for this run

name: Build & Push OpenWebUI
on:
push:
branches: [ "main" ]
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
packages: write
env:
IMAGE_NAME: ghcr.io/lsfusion/open-webui
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./open-webui
push: true
tags: |
${{ env.IMAGE_NAME }}:latest
${{ env.IMAGE_NAME }}:${{ github.sha }}