File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 67
67
push : true
68
68
platforms : linux/amd64,linux/arm64
69
69
tags : ${{ steps.metaroot.outputs.tags }}
70
+ - name : Docker meta latest
71
+ id : metalatest
72
+ uses : docker/metadata-action@v5
73
+ with :
74
+ images : |
75
+ jetpackio/devbox
76
+ tags : |
77
+ type=raw,value=latest
78
+ flavor : |
79
+ latest=true
80
+ - name : Build and push latest
81
+ uses : docker/build-push-action@v5
82
+ with :
83
+ context : ./internal/devbox/generate/tmpl/
84
+ file : ./internal/devbox/generate/tmpl/DevboxImageDockerfile
85
+ push : true
86
+ platforms : linux/amd64,linux/arm64
87
+ tags : ${{ steps.metalatest.outputs.tags }}
88
+ - name : Docker meta root latest
89
+ id : metarootlatest
90
+ uses : docker/metadata-action@v5
91
+ with :
92
+ images : |
93
+ jetpackio/devbox-root-user
94
+ tags : |
95
+ type=raw,value=latest
96
+ flavor : |
97
+ latest=true
98
+ - name : Build and push root user latest
99
+ uses : docker/build-push-action@v5
100
+ with :
101
+ context : ./internal/devbox/generate/tmpl/
102
+ file : ./internal/devbox/generate/tmpl/DevboxImageDockerfileRootUser
103
+ push : true
104
+ platforms : linux/amd64,linux/arm64
105
+ tags : ${{ steps.metarootlatest.outputs.tags }}
You can’t perform that action at this time.
0 commit comments