mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00

* Adding helm oci publishing (#3) Signed-off-by: Clay Rosenthal <clayros@amazon.com> * Update chart version Signed-off-by: Clay Rosenthal <clayros@amazon.com> * Update helm release Signed-off-by: Clay Rosenthal <clayros@amazon.com> * Update helm chart package path Signed-off-by: Clay Rosenthal <clayros@amazon.com> --------- Signed-off-by: Clay Rosenthal <clayros@amazon.com>
75 lines
No EOL
2.3 KiB
YAML
75 lines
No EOL
2.3 KiB
YAML
name: Build Helm Charts on Tag
|
|
|
|
# The workflow is triggered when a tag is pushed
|
|
on:
|
|
push:
|
|
tags:
|
|
- "chart-*"
|
|
|
|
jobs:
|
|
release:
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@v4
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
- name: Build Subchart Deps
|
|
run: |
|
|
cd helm/librechat
|
|
helm dependency build
|
|
cd ../librechat-rag-api
|
|
helm dependency build
|
|
|
|
- name: Get Chart Version
|
|
id: chart-version
|
|
run: |
|
|
CHART_VERSION=$(echo "${{ github.ref_name }}" | cut -d'-' -f2)
|
|
echo "CHART_VERSION=${CHART_VERSION}" >> "$GITHUB_OUTPUT"
|
|
|
|
# Log in to GitHub Container Registry
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Run Helm OCI Charts Releaser
|
|
# This is for the librechat chart
|
|
- name: Release Helm OCI Charts for librechat
|
|
uses: appany/helm-oci-chart-releaser@v0.4.2
|
|
with:
|
|
name: librechat
|
|
repository: ${{ github.actor }}/librechat-chart
|
|
tag: ${{ steps.chart-version.outputs.CHART_VERSION }}
|
|
path: helm/librechat
|
|
registry: ghcr.io
|
|
registry_username: ${{ github.actor }}
|
|
registry_password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# this is for the librechat-rag-api chart
|
|
- name: Release Helm OCI Charts for librechat-rag-api
|
|
uses: appany/helm-oci-chart-releaser@v0.4.2
|
|
with:
|
|
name: librechat-rag-api
|
|
repository: ${{ github.actor }}/librechat-chart
|
|
tag: ${{ steps.chart-version.outputs.CHART_VERSION }}
|
|
path: helm/librechat-rag-api
|
|
registry: ghcr.io
|
|
registry_username: ${{ github.actor }}
|
|
registry_password: ${{ secrets.GITHUB_TOKEN }} |