Skip to content

Commit

Permalink
feat(workflow): integrate Docker Hub description update step
Browse files Browse the repository at this point in the history
Add a step in the GitHub Actions workflow to automatically update the Docker Hub description using the peter-evans/dockerhub-description action. This includes setting up the necessary credentials from secrets to authenticate with Docker Hub.
  • Loading branch information
obeone authored Jan 7, 2025
1 parent cf0ff8d commit 6306850
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,10 @@ jobs:
env:
COSIGN_EXPERIMENTAL: true
DIGEST: ${{ steps.docker_build.outputs.digest }}

- name: Updage Docker Hub description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: obeoneorg/crawler-to-md

0 comments on commit 6306850

Please sign in to comment.