Skip to content

Commit baadc59

Browse files
Merge pull request #18 from DataKitchen/github-workflow
ci(github): fix release workflow
2 parents e31f601 + ddb4e02 commit baadc59

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.github/actions/publish_charts.yaml renamed to .github/actions/publish_charts/action.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,18 @@ runs:
1313
git config user.name "$GITHUB_ACTOR"
1414
git config user.email "[email protected]"
1515
16+
- name: Install Helm
17+
uses: azure/[email protected]
18+
19+
- name: Add Helm Repos for Dependencies
20+
shell: bash
21+
run: |
22+
helm repo add bitnami https://charts.bitnami.com/bitnami
23+
1624
- name: Run chart-releaser
1725
uses: helm/[email protected]
1826
with:
19-
charts_dir: '/deploy/charts'
27+
charts_dir: deploy/charts
2028
skip_existing: 'true'
2129
packages_with_index: 'true'
2230
env:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Latest Changes
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,6 @@ events_v2.html
156156
# MacOS
157157
*.DS_STORE
158158

159-
# Helm charts packages
160-
*.tgz
161-
162159
# Diff/merge files
163160
*.orig
164161

deploy/charts/observability-app/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Values for minikube trial deployment
2+
# Values for minikube dk-installer deployment
33
#
44

55
observability:

deploy/charts/observability-services/values.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ kafka:
1818
image:
1919
tag: 3.8.4-debian-12-r0
2020

21-
2221
mysql:
2322
enable: true
2423
image:
@@ -28,4 +27,3 @@ mysql:
2827
auth:
2928
username: observability
3029
database: datakitchen
31-

0 commit comments

Comments
 (0)