All checks were successful
Markdown linter / markdown-lint (push) Successful in 12s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 14s
Golang Tests / unittest (push) Successful in 3m34s
Release / release (push) Successful in 8m47s
Release / sync-to-hub-docker-io (push) Successful in 55s
20 lines
494 B
YAML
20 lines
494 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.2.2
|
|
- uses: peter-evans/dockerhub-description@v4.0.2
|
|
with:
|
|
username: ${{ secrets.DOCKER_IO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_IO_PASSWORD }}
|
|
repository: volkerraschek/civ
|
|
readme-filepath: README.md |