Skip to content

Workflow file for this run

name: Update Docker READMEs
on:
push:
jobs:
update:
if: ${{ github.repository == 'adap/flower' }}
name: Update Docker READMEs
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: dorny/paths-filter@v3
id: filter
with:
list-files: "json"
filters: |
readme:
- 'src/docker/**/README.md'
- run: echo ${{ steps.filter.outputs.readme_files }}
# - name: Docker Hub Description
# uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
# with:
# repository: flwr/
# readme-filepath:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}