Skip to content
Merged
45 changes: 45 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Release Charts

on:
push:
branches:
- main

jobs:
release:
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: Prepare selective charts
run: |
CHARTS_TO_RELEASE="redis postgresql rabbitmq mongodb external-dns common"

mkdir -p .cr-temp-charts

for chart in $CHARTS_TO_RELEASE; do
if [ -d "bitnami/$chart" ]; then
echo "Processing $chart..."
cp -r "bitnami/$chart" ".cr-temp-charts/"
rm -f ".cr-temp-charts/$chart/Chart.lock"
else
echo "Warning: bitnami/$chart not found"
fi
done

ls -la .cr-temp-charts/

- name: Run chart-releaser
uses: exivity/chart-releaser-action@v1.7.0
with:
charts_dir: .cr-temp-charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion bitnami/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ name: common
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/common
type: library
version: 2.31.6
version: 2.31.8
6 changes: 0 additions & 6 deletions bitnami/external-dns/Chart.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bitnami/external-dns/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apiVersion: v2
appVersion: 0.18.0
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://exivity.github.io/bitnami-charts
tags:
- bitnami-common
version: 2.x.x
Expand All @@ -29,4 +29,4 @@ maintainers:
name: external-dns
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/external-dns
version: 9.0.4
version: 9.0.6
6 changes: 0 additions & 6 deletions bitnami/mongodb/Chart.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bitnami/mongodb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apiVersion: v2
appVersion: 8.0.13
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://exivity.github.io/bitnami-charts
tags:
- bitnami-common
version: 2.x.x
Expand All @@ -41,4 +41,4 @@ maintainers:
name: mongodb
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/mongodb
version: 17.0.0
version: 17.0.2
6 changes: 0 additions & 6 deletions bitnami/postgresql/Chart.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bitnami/postgresql/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apiVersion: v2
appVersion: 17.6.0
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://exivity.github.io/bitnami-charts
tags:
- bitnami-common
version: 2.x.x
Expand All @@ -37,4 +37,4 @@ maintainers:
name: postgresql
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
version: 17.0.0
version: 17.0.2
6 changes: 0 additions & 6 deletions bitnami/rabbitmq/Chart.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bitnami/rabbitmq/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apiVersion: v2
appVersion: 4.1.3
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://exivity.github.io/bitnami-charts
tags:
- bitnami-common
version: 2.x.x
Expand All @@ -31,4 +31,4 @@ maintainers:
name: rabbitmq
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/rabbitmq
version: 16.0.15
version: 16.0.17
6 changes: 0 additions & 6 deletions bitnami/redis/Chart.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bitnami/redis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apiVersion: v2
appVersion: 8.2.1
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
repository: https://exivity.github.io/bitnami-charts
tags:
- bitnami-common
version: 2.x.x
Expand All @@ -38,4 +38,4 @@ maintainers:
name: redis
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/redis
version: 23.0.2
version: 23.0.4
Loading