Build / build-amd64 (pull_request) Successful in 56s
Lint Markdown files / markdown-lint (pull_request) Successful in 6s
Build / build-arm64 (pull_request) Successful in 1m49s
Lint Markdown files / markdown-lint (push) Successful in 6s
Release latest / push-amd64 (push) Failing after 58s
Release latest / push-arm64 (push) Failing after 1m54s
Release latest / push-manifest (push) Skipped
Release latest / sync-to-hub-docker-io (push) Skipped
21 lines
585 B
YAML
21 lines
585 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@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
|
|
- uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa # v5.0.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_IO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_IO_PASSWORD }}
|
|
repository: volkerraschek/docker-compose
|
|
readme-filepath: README.md |