File tree Expand file tree Collapse file tree 5 files changed +35
-4
lines changed Expand file tree Collapse file tree 5 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 44
44
-
45
45
name : Build and push
46
46
id : docker_build
47
- uses : docker/build-push-action@v3
47
+ uses : docker/build-push-action@v4
48
48
with :
49
49
build-args : |
50
50
BF_IMAGE=${{ env.REPOSITORY_NAME }}
Original file line number Diff line number Diff line change 49
49
-
50
50
name : Build and push
51
51
id : docker_build
52
- uses : docker/build-push-action@v3
52
+ uses : docker/build-push-action@v4
53
53
with :
54
54
build-args : |
55
55
BF_IMAGE=${{ env.REPOSITORY_NAME }}
Original file line number Diff line number Diff line change
1
+ name : update-readme
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ update_readme :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ -
13
+ name : Get repository name
14
+ run : echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | sed "s/bfren\/docker-//")" >> $GITHUB_ENV
15
+ shell : bash
16
+ -
17
+ name : Checkout code
18
+ uses : actions/checkout@v3
19
+ -
20
+ name : Login to DockerHub
21
+ uses : docker/login-action@v2
22
+ with :
23
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
24
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
25
+ -
26
+ name : Update repo description with README.md
27
+ uses : peter-evans/dockerhub-description@v3
28
+ with :
29
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
30
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
31
+ repository : bfren/${{ env.REPOSITORY_NAME }}
Original file line number Diff line number Diff line change 1
- FROM bfren/nginx:nginx1.22-4.0.27
1
+ FROM bfren/nginx:nginx1.22-4.0.28
2
2
3
3
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-proxy"
4
4
Original file line number Diff line number Diff line change 1
- 5.1.15
1
+ 5.1.16
You can’t perform that action at this time.
0 commit comments