Skip to content

Commit

Permalink
Upd: Package helm chart twice -- once with "v" prefix and once without.
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Oct 27, 2023
1 parent 064d31a commit 2371eee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,15 @@ jobs:
# TODO: Include the changelog in Chart.yml as annotations.artifacthub.io/changes
# See more here: https://artifacthub.io/docs/topics/annotations/helm/#supported-annotations

- name: Package helm chart
- name: Package helm chart with vX.Y.Z
uses: WyriHaximus/github-action-helm3@v3
with:
exec: helm package --app-version $RELEASE_VERSION --version "${RELEASE_VERSION#v}" --destination ./gh-pages helm/mail
exec: helm package --app-version $RELEASE_VERSION --version "${RELEASE_VERSION}" --destination ./gh-pages helm/mail

- name: Package helm chart with X.Y.Z
uses: WyriHaximus/github-action-helm3@v3
with:
exec: helm package --app-version "${RELEASE_VERSION#v}" --version "${RELEASE_VERSION#v}" --destination ./gh-pages helm/mail

- name: Create helm chart index
uses: WyriHaximus/github-action-helm3@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ You may enable metrics on the cart by simply setting `metrics.enabled=true`. Of
- Postfix logs will (by default, if you don't override this) go to `/var/log/mail.log` _as well_ as to stdout.
- `/var/log/mail.log` will be in plain-text format (always), no matter what you set `LOG_FORMAT` to
Please se helm chart's `values.yaml` for further configuration options and how to enable `ServiceMonitor`, if you need it for
Please see helm chart's `values.yaml` for further configuration options and how to enable `ServiceMonitor`, if you need it for
Prometheus.
## Extending the image
Expand Down

0 comments on commit 2371eee

Please sign in to comment.