mirror of
https://github.com/distribution/distribution
synced 2024-11-06 19:35:52 +01:00
4f506663d3
We were missing GitHub checkout step before running the update. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
36 lines
757 B
YAML
36 lines
757 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: Checkout
|
|
uses: actions/checkout@v4
|
|
-
|
|
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
|