forked from TrueCloudLab/distribution
dc07c42810
We've incorrectly added the dockerhub-readme workflow into .github path from where it can not be triggered: https://docs.github.com/en/actions/using-workflows/triggering-a-workflow This commit addresses it and update the workflow paths. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
32 lines
692 B
YAML
32 lines
692 B
YAML
name: dockerhub-readme
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- '.github/workflows/dockerhub-readme.yml'
|
|
- 'docs/dockerhub.md'
|
|
|
|
env:
|
|
DOCKERHUB_SLUG: distribution/distribution
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Update Docker Hub README
|
|
uses: peter-evans/dockerhub-description@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: ${{ env.DOCKERHUB_SLUG }}
|
|
readme-filepath: ./docs/dockerhub.md
|