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
6 changes: 6 additions & 0 deletions .github/cr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
owner: GeiserX
git-repo-url: https://github.com/GeiserX/LynxPrompt
charts-repo-url: https://geiserx.github.io/LynxPrompt
packages-with-index: false
index-path: index.yaml
release-name-template: "{{ .Name }}-{{ .Version }}"
35 changes: 35 additions & 0 deletions .github/workflows/release-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release Helm Chart

on:
push:
branches:
- main
paths:
- 'charts/lynxprompt/**'
- '.github/workflows/release-chart.yml'
workflow_dispatch:

jobs:
release:
permissions:
contents: 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: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
with:
charts_dir: charts
config: .github/cr.yaml
skip_existing: true
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion charts/lynxprompt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart for LynxPrompt - Self-hosted AI IDE configuration hub
type: application
kubeVersion: ">=1.21.0-0"
version: 0.1.0
appVersion: "2.0.75"
appVersion: "2.0.76"
keywords:
- lynxprompt
- ai
Expand Down
2 changes: 1 addition & 1 deletion charts/lynxprompt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fullnameOverride: ""
image:
repository: drumsergio/lynxprompt
pullPolicy: IfNotPresent
tag: "2.0.75"
tag: "2.0.76"

imagePullSecrets: []

Expand Down
Loading