From c724a38dda1bc968e6988f0224a6af82414b6c5e Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Fri, 31 Oct 2025 12:18:45 +0100 Subject: [PATCH] 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