Compare commits

...

7 Commits

Author SHA1 Message Date
99af57e0ef rsync replaced with rclone
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 34s
Container Publish / build-image (amd64) (push) Successful in 1m21s
Container Publish / update docker manifest (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 5s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Successful in 58s
2025-10-13 10:36:38 +02:00
bde1ce538e added openssh-client
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 29s
Container Publish / build-image (amd64) (push) Successful in 42s
Container Publish / update docker manifest (push) Successful in 9s
2025-10-13 10:17:05 +02:00
70d5448acd added rsync to image
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 29s
Container Publish / build-image (amd64) (push) Successful in 1m6s
Container Publish / update docker manifest (push) Successful in 10s
2025-10-13 09:40:04 +02:00
bff10b917a fix actions
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 39s
Container Publish / build-image (arm64) (push) Successful in 31s
Container Publish / update docker manifest (push) Successful in 12s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Successful in 6s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 4s
2025-10-03 23:55:36 +02:00
490c7e7313 hugo auto upgrade
Some checks failed
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 35s
Container Publish / build-image (arm64) (push) Successful in 29s
Container Publish / update docker manifest (push) Successful in 13s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Failing after 6s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Failing after 6s
2025-09-29 21:03:21 +02:00
0419a180e0 build on wednesday
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 12s
Container Publish / build-image (amd64) (push) Successful in 34s
Container Publish / update docker manifest (push) Successful in 10s
2025-09-29 21:00:50 +02:00
21ec5be273 always build 2025-09-29 21:00:37 +02:00
3 changed files with 5 additions and 7 deletions

View File

@@ -7,10 +7,8 @@ env:
on: on:
push: push:
tags:
- '*'
schedule: schedule:
- cron: "0 12 3 * *" - cron: "0 12 * * 3"
workflow_dispatch: workflow_dispatch:
workflow_call: workflow_call:
workflow_run: workflow_run:
@@ -49,7 +47,7 @@ jobs:
docker build \ docker build \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \ --tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
--build-arg HUGO_ARCH=${{ matrix.arch }} \ --build-arg HUGO_ARCH=${{ matrix.arch }} \
--platform linux/${{ matrix.arch }} -f Dockerfile . --platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }}
manifest: manifest:

View File

@@ -61,4 +61,4 @@ jobs:
token: ${{ secrets.TELEGRAM_TOKEN }} token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown format: markdown
message: | message: |
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}` Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest`

View File

@@ -8,7 +8,7 @@ RUN \
apk --no-cache upgrade && \ apk --no-cache upgrade && \
apk --no-cache add curl jq && \ apk --no-cache add curl jq && \
LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/gohugoio/hugo/releases/latest | jq --raw-output ".tag_name" | sed 's/^v//' ) && \ LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/gohugoio/hugo/releases/latest | jq --raw-output ".tag_name" | sed 's/^v//' ) && \
LATEST_RELEASE=0.139.4 && \ echo "Using hugo release: ${LATEST_RELEASE}" && \
URL="https://github.com/gohugoio/hugo/releases/download/v${LATEST_RELEASE}/hugo_extended_${LATEST_RELEASE}_linux-${HUGO_ARCH}.tar.gz " && \ URL="https://github.com/gohugoio/hugo/releases/download/v${LATEST_RELEASE}/hugo_extended_${LATEST_RELEASE}_linux-${HUGO_ARCH}.tar.gz " && \
echo "Downloading: ${URL}" && \ echo "Downloading: ${URL}" && \
wget "${URL}" -O - | tar xzv -C /tmp wget "${URL}" -O - | tar xzv -C /tmp
@@ -21,6 +21,6 @@ COPY --from=prep /tmp/hugo /usr/local/bin/hugo
RUN \ RUN \
apk --no-cache upgrade && \ apk --no-cache upgrade && \
apk --no-cache add git gcompat libstdc++ apk --no-cache add rclone git gcompat libstdc++
ENTRYPOINT [ "/usr/local/bin/hugo" ] ENTRYPOINT [ "/usr/local/bin/hugo" ]