Skip to content

add supabase to requirements.txt file #14

add supabase to requirements.txt file

add supabase to requirements.txt file #14

name: publish
on:
push:
branches:
- bizgpt
jobs:
publish-pipeline-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }} # Changed from GHCR_TOKEN to GITHUB_TOKEN
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/chatcrm/bizgpt-openwebui-pipeline:bizgpt
ghcr.io/chatcrm/bizgpt-openwebui-pipeline:bizgpt-${{ github.sha }}