From c724a38dda1bc968e6988f0224a6af82414b6c5e Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Fri, 31 Oct 2025 12:18:45 +0100 Subject: [PATCH 1/2] Fix app path in build-chart-paperless-ngx.yml Updated the APP environment variable in the Helm package job from 'charts/pperless-ngx' to 'charts/paperless-ngx'. This change was necessary to correct the path to the Paperless NGX chart, ensuring that the workflow refers to the correct directory. The previous path contained a typo which would have resulted in build errors. There are no breaking changes introduced with this update. --- .gitea/workflows/build-chart-paperless-ngx.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-chart-paperless-ngx.yml b/.gitea/workflows/build-chart-paperless-ngx.yml index 74870de..abd40a8 100644 --- a/.gitea/workflows/build-chart-paperless-ngx.yml +++ b/.gitea/workflows/build-chart-paperless-ngx.yml @@ -10,7 +10,7 @@ jobs: helm-package: runs-on: ubuntu-latest env: - APP: charts/pperless-ngx + APP: charts/paperless-ngx steps: - name: Checkout repository uses: actions/checkout@v3 -- 2.49.1 From f4d956133096e73288ae603f4b5ac896e4993239 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Fri, 31 Oct 2025 12:19:24 +0100 Subject: [PATCH 2/2] Update paperless-ngx version to 0.25.1 Updated the version number in the Chart.yaml file for the paperless-ngx chart from 0.25.0 to 0.25.1. This change was made to reflect the latest release version of the application, ensuring that users can deploy the updated features and bug fixes included in this version. No breaking changes are introduced with this update, and it is important for users to keep their deployments current with the latest releases for optimal performance and security. --- charts/paperless-ngx/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/paperless-ngx/Chart.yaml b/charts/paperless-ngx/Chart.yaml index 82c6635..e526b5a 100644 --- a/charts/paperless-ngx/Chart.yaml +++ b/charts/paperless-ngx/Chart.yaml @@ -39,4 +39,4 @@ name: paperless-ngx sources: - https://github.com/paperless-ngx/paperless-ngx type: application -version: 0.25.0 +version: 0.25.1 -- 2.49.1