Skip to content
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
11 changes: 6 additions & 5 deletions .github/workflows/build_and_push_dev.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build image, main branch push quay.io
name: Build CPU image, main branch push quay.io

on:
push:
Expand All @@ -7,9 +7,10 @@ on:
branches: ["main"]

env:

IMAGE_NAME: rag-content-cpu
IMAGE_NAMESPACE: ${{ github.repository_owner }}
IMAGE_REGISTRY: ghcr.io
IMAGE_NAMESPACE: lightspeed-core
IMAGE_REGISTRY: quay.io
LATEST_TAG: latest
CONTAINER_FILE: Containerfile

Expand Down Expand Up @@ -68,5 +69,5 @@ jobs:
image: ${{ steps.build_image.outputs.image }}
tags: ${{ steps.build_image.outputs.tags }}
registry: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAMESPACE }}
username: ${{ github.actor }}
password: ${{ github.token }}
username: ${{ secrets.QUAY_REGISTRY_USERNAME }}
password: ${{ secrets.QUAY_REGISTRY_PASSWORD }}
10 changes: 5 additions & 5 deletions .github/workflows/build_and_push_dev_gpu.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Build image, main branch push quay.io
name: Build GPU image, main branch push quay.io

on:
push:
branches: [ main ]

env:
IMAGE_NAME: rag-content-gpu
IMAGE_NAMESPACE: ${{ github.repository_owner }}
IMAGE_REGISTRY: ghcr.io
IMAGE_NAMESPACE: lightspeed-core
IMAGE_REGISTRY: quay.io
LATEST_TAG: latest
CONTAINER_FILE: Containerfile-gpu

Expand Down Expand Up @@ -66,5 +66,5 @@ jobs:
image: ${{ steps.build_image.outputs.image }}
tags: ${{ steps.build_image.outputs.tags }}
registry: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAMESPACE }}
username: ${{ github.actor }}
password: ${{ github.token }}
username: ${{ secrets.QUAY_REGISTRY_USERNAME }}
password: ${{ secrets.QUAY_REGISTRY_PASSWORD }}