From 697061a151be37a4fb19daf2c9a9bf111c667a66 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 14 Jan 2024 14:30:41 +0100 Subject: [PATCH] Create hub.yml --- .github/workflows/hub.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/hub.yml diff --git a/.github/workflows/hub.yml b/.github/workflows/hub.yml new file mode 100644 index 000000000..789507d55 --- /dev/null +++ b/.github/workflows/hub.yml @@ -0,0 +1,24 @@ +name: Update +on: + push: + branches: + - master + paths: + - readme.md + - README.md + - .github/workflows/hub.yml + +jobs: + dockerHubDescription: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - + name: Docker Hub Description + uses: peter-evans/dockerhub-description@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + repository: ${{ secrets.DOCKERHUB_REPO }} + short-description: ${{ github.event.repository.description }} + readme-filepath: ./readme.md