You've already forked tarr
62d3c4c13c
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (push) Failing after 42s
Lint Markdown files / Run markdown linter (pull_request) Failing after 12m49s
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (pull_request) Failing after 12m54s
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (push) Failing after 1m49s
Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (pull_request) Failing after 1m31s
21 lines
496 B
YAML
21 lines
496 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@v6.0.3
|
|
- uses: peter-evans/dockerhub-description@v5.0.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_IO_USERNAME }}
|
|
password: ${{ secrets.DOCKER_IO_PASSWORD }}
|
|
repository: volkerraschek/tarr
|
|
readme-filepath: README.md
|