49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Update Docker Hub repo description
 | |
| 
 | |
| You can update the [Docker Hub repository description](https://docs.docker.com/docker-hub/repos/)
 | |
| using a third party action called [Docker Hub Description](https://github.com/peter-evans/dockerhub-description)
 | |
| with this action:
 | |
| 
 | |
| ```yaml
 | |
| name: ci
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - 'main'
 | |
| 
 | |
| jobs:
 | |
|   docker:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       -
 | |
|         name: Checkout
 | |
|         uses: actions/checkout@v3
 | |
|       -
 | |
|         name: Set up QEMU
 | |
|         uses: docker/setup-qemu-action@v2
 | |
|       -
 | |
|         name: Set up Docker Buildx
 | |
|         uses: docker/setup-buildx-action@v2
 | |
|       -
 | |
|         name: Login to Docker Hub
 | |
|         uses: docker/login-action@v2
 | |
|         with:
 | |
|           username: ${{ secrets.DOCKERHUB_USERNAME }}
 | |
|           password: ${{ secrets.DOCKERHUB_TOKEN }}
 | |
|       -
 | |
|         name: Build and push
 | |
|         uses: docker/build-push-action@v3
 | |
|         with:
 | |
|           context: .
 | |
|           push: true
 | |
|           tags: user/app:latest
 | |
|       -
 | |
|         name: Update repo description
 | |
|         uses: peter-evans/dockerhub-description@v2
 | |
|         with:
 | |
|           username: ${{ secrets.DOCKERHUB_USERNAME }}
 | |
|           password: ${{ secrets.DOCKERHUB_PASSWORD }}
 | |
|           repository: user/app
 | |
| ```
 | 
