mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-12-16 21:20:39 +03:00
33
app/chat-gpt/.github/workflows/docker-build-push.yml
vendored
Normal file
33
app/chat-gpt/.github/workflows/docker-build-push.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Docker Build and Push
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up QEMU - Support for more platforms
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKER_USERNAME }}/freegpt-webui:latest
|
||||
19
app/chat-gpt/.github/workflows/sync-hugging.yml
vendored
Normal file
19
app/chat-gpt/.github/workflows/sync-hugging.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Sync with Hugging Face Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Sync with Hugging Face
|
||||
uses: ramonvc/huggingface-sync-action@v0.0.1
|
||||
with:
|
||||
github_repo_id: ramonvc/freegpt-webui
|
||||
huggingface_repo_id: monra/freegpt-webui
|
||||
repo_type: space
|
||||
space_sdk: docker
|
||||
hf_token: ${{ secrets.HF_TOKEN }}
|
||||
Reference in New Issue
Block a user