Skip to content

Commit d7404f3

Browse files
committed
fix: eliminate tabs in Chart.yaml to fix yaml errors
Eliminated some tabs in `Chart.yaml` that were causing `helm lint` and `helm package` to fail, including in CI. Also added `.editorconfig` file to help with yaml forwarding moving forward.
1 parent 5754897 commit d7404f3

File tree

4 files changed

+33
-10
lines changed

4 files changed

+33
-10
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://editorconfig.org/ for details on how to configure your editor to respect these settings.
2+
3+
# This is the terminal .editorconfig in this repository.
4+
root = true
5+
6+
# all files
7+
[*]
8+
indent_style = space
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
end_of_line = lf
12+
13+
[*.{yaml,yml}]
14+
indent_size = 2

.github/workflows/publish-gh-pages.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
sudo mv linux-amd64/helm /usr/local/bin/helm
2121
rm -rf linux-amd64 helm.tar.gz
2222
23+
- name: Lint chart
24+
run: |
25+
helm lint .
26+
2327
- name: Package chart
2428
run: |
2529
rm -rf dist

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.2.1] - 2025-12-07
6+
7+
### Fixed
8+
- Eliminate tabs in Chart.yaml to fix yaml errors
9+
510
## [0.2.0] - 2025-11-23
611

712
### Changed

Chart.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0
18+
version: 0.2.1
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
@@ -24,16 +24,16 @@ version: 0.2.0
2424
appVersion: "0.25.2"
2525
home: https://github.com/usememos/helm
2626
sources:
27-
- https://github.com/usememos/memos
28-
- https://github.com/usememos/helm
27+
- https://github.com/usememos/memos
28+
- https://github.com/usememos/helm
2929
keywords:
30-
- memos
31-
- notes
32-
- helm
30+
- memos
31+
- notes
32+
- helm
3333
maintainers:
34-
- name: usememos
35-
email: usememos@gmail.com
34+
- name: usememos
35+
email: usememos@gmail.com
3636
icon: https://raw.githubusercontent.com/usememos/dotcom/main/public/logo.png
3737
annotations:
38-
artifacthub.io/changes: https://github.com/usememos/helm/blob/main/CHANGELOG.md
39-
artifacthub.io/categories: "Productivity"
38+
artifacthub.io/changes: https://github.com/usememos/helm/blob/main/CHANGELOG.md
39+
artifacthub.io/categories: "Productivity"

0 commit comments

Comments
 (0)