From 9ab4ee084d3e2c99bb7fb188fea65a8c160739c5 Mon Sep 17 00:00:00 2001 From: binhex Date: Tue, 19 Sep 2023 10:26:35 +0100 Subject: [PATCH] fix up manual workflow --- .github/workflows/workflow-docker-manual.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow-docker-manual.yml b/.github/workflows/workflow-docker-manual.yml index 5dc13f9..8705ebc 100644 --- a/.github/workflows/workflow-docker-manual.yml +++ b/.github/workflows/workflow-docker-manual.yml @@ -40,7 +40,14 @@ jobs: registry: registry.gitlab.com username: ${{ secrets.GITLAB_USERNAME }} password: ${{ secrets.GITLAB_TOKEN }} - - name: Show Runners environment (debug) + - name: Sync GitHub README.md with Docker Hub + uses: peter-evans/dockerhub-description@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} # NOTE: This MUST be the password NOT the token + repository: ${{ github.repository }} + short-description: ${{ github.event.repository.description }} + - name: DEBUG Show Runners environment uses: nick-fields/retry@v2 with: timeout_minutes: 5 @@ -83,3 +90,5 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: ${{ github.repository }}:${{ github.event.inputs.tags }}, quay.io/${{ github.repository }}:${{ github.event.inputs.tags }}, ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }}, registry.gitlab.com/${{ github.repository }}:${{ github.event.inputs.tags }} + build-args: | + release_tag_name=${{ steps.identify_github_release_tag_name.outputs.tag }}