Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Github Workflows. Remove debug code from common docker workflow #43

Merged
merged 7 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/docker-build-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,8 @@ jobs:
context: .
file: ${{ matrix.file }}
push: true
# tags: |
# ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }}
# ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ inputs.tag }}
tags: |
ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ inputs.tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ inputs.tag }}
platforms: linux/amd64,linux/arm64
target: ${{ matrix.target }}
53 changes: 5 additions & 48 deletions .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,53 +7,10 @@ on:
- 'README.md'
branches:
- main


jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- target: main
file: Dockerfile
image_name: librechat-rag-api-dev
- target: lite
file: Dockerfile.lite
image_name: librechat-rag-api-dev-lite

steps:
# Check out the repository
- name: Checkout
uses: actions/checkout@v4

# Set up QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

# 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 }}

# Build and push Docker images for each target
- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.file }}
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest
platforms: linux/amd64,linux/arm64
target: ${{ matrix.target }}
call-docker-build:
uses: ./.github/workflows/docker-build-workflow.yaml
with:
tag: latest