You've already forked dcmerge
All checks were successful
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (push) Successful in 10s
Lint Markdown files / Run markdown linter (push) Successful in 4s
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (push) Successful in 28s
Run Golang tests / Run unit tests (stable, ubuntu-latest-arm64) (push) Successful in 23s
Run Golang tests / Run unit tests (stable, ubuntu-latest-amd64) (push) Successful in 1m2s
20 lines
495 B
YAML
20 lines
495 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/dcmerge
|
|
readme-filepath: README.md
|