Skip to content

Commit 4d642d4

Browse files
authored
fix Helm chart packaging (#18)
1 parent 2358e37 commit 4d642d4

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
env:
4848
GITHUB_USER_NAME: ${{ github.actor }}
4949
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
- name: Package Helm chart
51+
run: |
52+
tar -czf operator/build/helm/kubernetes/postgresql-operator-${{ steps.nextVersion.outputs.version }}.tgz -C operator/build/helm/kubernetes postgresql-operator
53+
shell: bash
5054
- uses: aboutbits/github-actions-docker/build-push@v1
5155
with:
5256
username: ${{ github.actor }}
@@ -86,7 +90,7 @@ jobs:
8690
env:
8791
GH_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
8892
run: |
89-
gh release upload v${{ steps.nextVersion.outputs.version }} operator/build/helm/kubernetes/*.tgz operator/build/kubernetes/*.postgresql.aboutbits.it-v1.yml
93+
gh release upload v${{ steps.nextVersion.outputs.version }} operator/build/helm/kubernetes/postgresql-operator-${{ steps.nextVersion.outputs.version }}.tgz operator/build/kubernetes/*.postgresql.aboutbits.it-v1.yml
9094
shell: bash
9195
- name: Update README.md
9296
run: |

operator/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ quarkus:
7070
name: AboutBits
7171
email: info@aboutbits.it
7272
url: https://aboutbits.it/
73-
create-tar-file: true
73+
create-tar-file: false
7474
extension: tgz
7575
values:
7676
replicas:

0 commit comments

Comments
 (0)