Skip to content

Commit

Permalink
Revert "🐋 ci: adjust docker workflow (#43)" (#46)
Browse files Browse the repository at this point in the history
This reverts commit f202734.
  • Loading branch information
danny-avila authored Jun 15, 2024
1 parent f202734 commit 780b3bb
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/docker-build-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ 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/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ inputs.tag }}
ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ github.sha }}
ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ inputs.tag }}
platforms: linux/amd64,linux/arm64
target: ${{ matrix.target }}
53 changes: 48 additions & 5 deletions .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,53 @@ on:
- 'README.md'
branches:
- main


jobs:
call-docker-build:
uses: ./.github/workflows/docker-build-workflow.yaml
with:
tag: latest
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 }}

0 comments on commit 780b3bb

Please sign in to comment.