Compare commits

..

No commits in common. "main" and "0.1.0+up25.2.3" have entirely different histories.

5 changed files with 6 additions and 16 deletions

View File

@ -6,7 +6,7 @@ on:
jobs:
build:
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
env:
CHART_DIR: bookstack/
CHART_VERSION: ${{ github.event.release.tag_name }}

View File

@ -1,9 +0,0 @@
{
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false,
"yaml": true
}
}

View File

@ -1,6 +1,6 @@
# 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 subcharts.
---

View File

@ -1,7 +1,6 @@
apiVersion: v2
name: bookstack
description: |
Deploys the BookStack wiki platform on Kubernetes with optional MariaDB and Redis sub-charts.
description: A Helm chart for Kubernetes
type: application

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
generate_changelog.py - Wandelt den Artifact Hub-Changelog in Chart.yaml
in eine Markdown-Datei (CHANGELOG.md) um.
generate_changelog.py Wandelt den ArtifactHubChangelog in Chart.yaml
in eine MarkdownDatei (CHANGELOG.md) um.
Aufruf:
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")
today = dt.date.today().isoformat()
heading = f"## {version} - {today}\n"
heading = f"## {version} {today}\n"
bullets = []
for item in changes: