File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -291,14 +291,10 @@ jobs:
291291
292292 update-dockerhub-description :
293293 if : github.event_name == 'push' && github.ref == 'refs/heads/mainline'
294- needs : [ merge-manifest]
294+ needs : merge-manifest
295295 name : Update DockerHub Description
296- runs-on : ubuntu-latest
297- steps :
298- - name : Update DockerHub Description
299- if : env.HAS_SECRETS == 'true'
300- uses : ./.github/workflows/update-dockerhub-docs.yml
301- with :
302- DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
303- DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
304- DOCKERHUB_REPOSITORY : ${{ secrets.DOCKERHUB_REPOSITORY }}
296+ uses : ./.github/workflows/update-dockerhub-docs.yml
297+ secrets :
298+ DOCKERHUB_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
299+ DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
300+ DOCKERHUB_REPOSITORY : ${{ secrets.DOCKERHUB_REPOSITORY }}
Original file line number Diff line number Diff line change 2020 steps :
2121 - uses : actions/checkout@v4
2222 - name : Docker Hub Description
23+ if : ${{ secrets.DOCKERHUB_USERNAME && secrets.DOCKERHUB_TOKEN && secrets.DOCKERHUB_REPOSITORY }}
2324 uses : peter-evans/dockerhub-description@v4
2425 with :
2526 username : ${{ secrets.DOCKERHUB_USERNAME }}
You can’t perform that action at this time.
0 commit comments