mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 09:20:15 +01:00
chore: make tag workflow push only, make manual workflow from main (#1100)
This commit is contained in:
parent
05c4c7e551
commit
bc39bd12a5
2 changed files with 40 additions and 1 deletions
1
.github/workflows/container.yml
vendored
1
.github/workflows/container.yml
vendored
|
|
@ -5,7 +5,6 @@ on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "*"
|
- "*"
|
||||||
workflow_dispatch: # This line allows manual triggering
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
||||||
40
.github/workflows/latest-images-main.yml
vendored
Normal file
40
.github/workflows/latest-images-main.yml
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
name: Docker Compose Build on Main Branch
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # This line allows manual triggering
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# Check out the repository
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Set up Docker
|
||||||
|
- name: Set up Docker
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
# Log in to GitHub Container Registry
|
||||||
|
- name: Log in to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# Run docker-compose build
|
||||||
|
- name: Build Docker images
|
||||||
|
run: |
|
||||||
|
cp .env.example .env
|
||||||
|
docker-compose build
|
||||||
|
docker build -f Dockerfile.multi --target api-build -t librechat-api .
|
||||||
|
|
||||||
|
# Tag and push the images with the 'latest' tag
|
||||||
|
- name: Tag image and push
|
||||||
|
run: |
|
||||||
|
docker tag librechat:latest ghcr.io/${{ github.repository_owner }}/librechat:latest
|
||||||
|
docker push ghcr.io/${{ github.repository_owner }}/librechat:latest
|
||||||
|
docker tag librechat-api:latest ghcr.io/${{ github.repository_owner }}/librechat-api:latest
|
||||||
|
docker push ghcr.io/${{ github.repository_owner }}/librechat-api:latest
|
||||||
Loading…
Add table
Add a link
Reference in a new issue