From 109379365d46ea1881f5d64d5621b7d8c8a01a51 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 3 Apr 2023 18:01:03 +0200 Subject: [PATCH] Create hub.yml --- .github/workflows/hub.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000..e02128a --- /dev/null +++ b/.github/workflows/hub.yml @@ -0,0 +1,22 @@ +name: Update Docker Hub Description +on: + push: + branches: + - main + paths: + - readme.md + - .github/workflows/hub.yml +jobs: + dockerHubDescription: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Docker Hub Description + uses: peter-evans/dockerhub-description@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + repository: kroese/virtual-dsm + short-description: ${{ github.event.repository.description }} +