diff --git a/.github/workflows/cleanup-tags.yml b/.github/workflows/cleanup-tags.yml index bbb7a169c..935245889 100644 --- a/.github/workflows/cleanup-tags.yml +++ b/.github/workflows/cleanup-tags.yml @@ -38,6 +38,7 @@ jobs: scheme: "branch" repo_name: "paperless-ngx" match_regex: "feature-" + do_delete: "true" cleanup-untagged-images: name: Cleanup Untagged Images Tags for ${{ matrix.primary-name }} @@ -73,3 +74,4 @@ jobs: owner: "${{ github.repository_owner }}" is_org: "true" package_name: "${{ matrix.primary-name }}" + do_delete: "true" diff --git a/Dockerfile b/Dockerfile index f96feb804..288593049 100644 --- a/Dockerfile +++ b/Dockerfile @@ -183,7 +183,7 @@ ARG PSYCOPG2_VERSION=2.9.6 RUN set -eux \ && echo "Getting binaries" \ && mkdir paperless-ngx \ - && curl --fail --silent --show-error --output paperless-ngx.tar.gz --location https://github.com/paperless-ngx/builder/archive/1f0e6665ba1b144f70fd6dfc8d0e8ba3b7a578ee.tar.gz \ + && curl --fail --silent --show-error --output paperless-ngx.tar.gz --location https://github.com/paperless-ngx/builder/archive/58bb061b9b3b63009852d6d875f9a305d9ae6ac9.tar.gz \ && tar -xf paperless-ngx.tar.gz --directory paperless-ngx --strip-components=1 \ && cd paperless-ngx \ # Setting a specific revision ensures we know what this installed diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index a15a1359a..8b9578514 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + 'api/', apiVersion: '3', appTitle: 'Paperless-ngx', - version: '1.16.0', + version: '1.16.0-dev', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/',