Compare commits
4 Commits
fe12222722
...
25707b7f89
Author | SHA1 | Date | |
---|---|---|---|
25707b7f89 | |||
61d3bc4aba | |||
bc5138ef84 | |||
55ca2b3af4 |
@ -6,7 +6,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
env:
|
env:
|
||||||
CHART_DIR: bookstack/
|
CHART_DIR: bookstack/
|
||||||
CHART_VERSION: ${{ github.event.release.tag_name }}
|
CHART_VERSION: ${{ github.event.release.tag_name }}
|
||||||
|
9
.vscode/settings.json
vendored
Normal file
9
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"github.copilot.enable": {
|
||||||
|
"*": true,
|
||||||
|
"plaintext": false,
|
||||||
|
"markdown": false,
|
||||||
|
"scminput": false,
|
||||||
|
"yaml": true
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
# BookStack Helm Chart
|
# BookStack Helm Chart
|
||||||
|
|
||||||
Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis sub‑charts.
|
Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis sub-charts.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: bookstack
|
name: bookstack
|
||||||
description: A Helm chart for Kubernetes
|
description: |
|
||||||
|
Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis sub-charts.
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
generate_changelog.py – Wandelt den Artifact Hub‑Changelog in Chart.yaml
|
generate_changelog.py - Wandelt den Artifact Hub-Changelog in Chart.yaml
|
||||||
in eine Markdown‑Datei (CHANGELOG.md) um.
|
in eine Markdown-Datei (CHANGELOG.md) um.
|
||||||
|
|
||||||
Aufruf:
|
Aufruf:
|
||||||
python generate_changelog.py # takes ./Chart.yaml
|
python generate_changelog.py # takes ./Chart.yaml
|
||||||
@ -42,7 +42,7 @@ def render_markdown(chart: dict, changes: list[dict]) -> str:
|
|||||||
version = chart.get("version", "Unversioniert")
|
version = chart.get("version", "Unversioniert")
|
||||||
today = dt.date.today().isoformat()
|
today = dt.date.today().isoformat()
|
||||||
|
|
||||||
heading = f"## {version} – {today}\n"
|
heading = f"## {version} - {today}\n"
|
||||||
bullets = []
|
bullets = []
|
||||||
|
|
||||||
for item in changes:
|
for item in changes:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user