Skip to content

Commit 7164580

Browse files
authored
feat(ci): add release workflow for Helm charts
2 parents cc4ee2b + 6981923 commit 7164580

File tree

7 files changed

+31
-47
lines changed

7 files changed

+31
-47
lines changed

.github/workflows/release.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
23+
24+
- name: Run chart-releaser
25+
uses: helm/chart-releaser-action@v1.7.0
26+
with:
27+
skip_existing: true
28+
env:
29+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

build.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

build/supabase-0.0.1.tgz

-18.5 KB
Binary file not shown.

build/supabase-0.0.2.tgz

-18.5 KB
Binary file not shown.

build/supabase-0.2.0.tgz

-30.5 KB
Binary file not shown.

charts/supabase/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: supabase
3-
description: The open source Firebase alternative.
3+
description: Supabase is the Postgres development platform.
44

55
# A chart can be either an 'application' or a 'library' chart.
66
#
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.2
18+
version: 0.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

index.yaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)