Lint Markdown files / markdown-lint (push) Successful in 10s
Release / push-arm64 (push) Successful in 1m24s
Release / push-amd64 (push) Successful in 46s
Release / push-manifest (push) Successful in 11s
Release / sync-to-hub-docker-io (push) Successful in 2m22s
The workflows pulled tonistiigi/binfmt through an unauthenticated request, either directly from docker.io or from harbor.cryptic.systems before any credentials had been configured. Both variants are subject to upstream rate limiting and made the multi arch builds fail sporadically. The docker/login-action steps are now placed in front of docker/setup-qemu-action and docker/setup-buildx-action, and a second login against harbor.cryptic.systems was added so that the binfmt image is always pulled from the internal registry with valid credentials. Leftover setup-qemu-action and setup-buildx-action steps from the previous ordering were removed. All pinned actions were additionally bumped to their latest upstream release to remove the version drift between the repositories.
22 lines
580 B
YAML
22 lines
580 B
YAML
name: Update Docker Hub Description
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- README.md
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
update-description-on-hub-docker-io:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa # v5.0.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_IO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_IO_PASSWORD }}
|
|
repository: volkerraschek/git
|
|
readme-filepath: README.md |