File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,19 @@ jobs:
48
48
password : ${{ secrets.DOCKER_PASSWORD }}
49
49
50
50
- name : Build and push
51
- uses : docker/build-push-action@v5
51
+ uses : docker/build-push-action@v6
52
52
with :
53
53
context : ./docker/${{ matrix.series }}
54
54
push : ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
55
55
tags : |
56
56
snickerjp/docker-mysql-shell:${{ matrix.version }}
57
57
snickerjp/docker-mysql-shell:${{ matrix.extra_tag }}
58
58
${{ matrix.series == 'lts' && 'snickerjp/docker-mysql-shell:latest' || '' }}
59
+
60
+ - name : Update Docker Hub description
61
+ uses : peter-evans/dockerhub-description@v4
62
+ with :
63
+ username : ${{ secrets.DOCKER_USERNAME }}
64
+ password : ${{ secrets.DOCKER_PASSWORD }}
65
+ repository : snickerjp/docker-mysql-shell
66
+ readme-filepath : ./README.md
Original file line number Diff line number Diff line change 51
51
type=raw,value=latest,enable=${{ matrix.series == 'lts' }}
52
52
53
53
- name : Build and push Docker image
54
- uses : docker/build-push-action@v5
54
+ uses : docker/build-push-action@v6
55
55
with :
56
56
context : ./docker/${{ matrix.series }}
57
57
push : true
You can’t perform that action at this time.
0 commit comments