You've already forked ansible-docker
All checks were successful
Build / build-arch-linux (push) Successful in 57s
Build / build-rocky-linux-8 (push) Successful in 1m56s
Build / build-rocky-linux-9 (push) Successful in 1m14s
Lint Markdown files / markdown-lint (push) Successful in 5s
Release / push-arch-linux (push) Successful in 2m15s
Release / push-rocky-linux-9 (push) Successful in 1m36s
Release / push-rocky-linux-8 (push) Successful in 10m37s
Release / sync-to-hub-docker-io (push) Successful in 1m26s
23 lines
499 B
YAML
23 lines
499 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@v4.3.0
|
|
- uses: peter-evans/dockerhub-description@v4.0.2
|
|
with:
|
|
username: ${{ secrets.DOCKER_IO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_IO_PASSWORD }}
|
|
repository: volkerraschek/ansible
|
|
readme-filepath: README.md
|