Compare commits

..

No commits in common. "08f408afab464e5f78562508e14ae2e61fe0e39d" and "61b692b1b083b84f0764578589043f76c8b44854" have entirely different histories.

3 changed files with 14 additions and 3 deletions

View file

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View file

@ -16,9 +16,9 @@ RUN apk add --no-cache \
grep \ grep \
findutils findutils
ENV VERSION=v2.16.3 ENV VERSION=v2.15.3
ENV ARCHIVE=paperless-ngx-$VERSION.tar.xz ENV ARCHIVE=paperless-ngx-$VERSION.tar.xz
ENV SHA256_SUM=8d26e989555b35929208b3693ff27e16d0e2eb1db8cbb5630c4766b8be349a00 ENV SHA256_SUM=20cd5961b1f91bde5cb6743ae8eb7f8fd98d66ba67d49d5ab030d87c998ac2d1
RUN wget https://github.com/paperless-ngx/paperless-ngx/releases/download/$VERSION/$ARCHIVE RUN wget https://github.com/paperless-ngx/paperless-ngx/releases/download/$VERSION/$ARCHIVE
RUN echo "$SHA256_SUM $ARCHIVE" | sha256sum -c - || exit 1 RUN echo "$SHA256_SUM $ARCHIVE" | sha256sum -c - || exit 1
RUN mkdir -p /install RUN mkdir -p /install

1
Jenkinsfile vendored
View file

@ -1 +0,0 @@
multiarch_container()