Skip to content

Commit

Permalink
ci: fix helm packaging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fredleger committed Dec 28, 2024
1 parent e5025bd commit 4982a98
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ jobs:
run: |
cd "${CHART_PATH}"
echo "+ update helm chart version"
sed -i "s/version: .*/version: ${VERSION}/g" Chart.yaml
sed -i "s/appVersion: .*/appVersion: ${VERSION}/g" Chart.yaml
sed -i "s/^version: .*/version: ${VERSION}/g" Chart.yaml
# we don't want to touch appVersion in this case
# sed -i "s/^appVersion: .*/appVersion: ${VERSION}/g" Chart.yaml
env:
CHART_PATH: ${{github.workspace}}/postal
VERSION: ${{ needs.update_release_draft.outputs.latestRelease }}
Expand Down
4 changes: 2 additions & 2 deletions postal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ version: 0.1.1
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.1.1
appVersion: "3.3.4"

maintainers:
- name: "libr4rian"
Expand All @@ -35,5 +35,5 @@ maintainers:
dependencies:
- name: mariadb
repository: https://charts.bitnami.com/bitnami
version: 0.1.1
version: 16.*.*
condition: mariadb.enabled

0 comments on commit 4982a98

Please sign in to comment.