File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,27 +10,27 @@ tasks:
10
10
- |
11
11
docker buildx build \
12
12
--platform=linux/amd64,linux/arm64 \
13
- -t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:v {{.PROJ_VER}} \
13
+ -t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:{{.PROJ_VER}} \
14
14
-t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:latest \
15
15
-f Dockerfile.prod .
16
16
vars :
17
17
PROJ_VER :
18
18
sh : " task version"
19
- release :image :
19
+ publish :image :
20
20
prompt : " Before we build, is the version number up to date?"
21
21
desc : builds a publishable docker image
22
22
cmds :
23
23
- |
24
24
docker buildx build \
25
25
--platform=linux/amd64,linux/arm64 \
26
26
--push \
27
- -t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:v {{.PROJ_VER}} \
27
+ -t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:{{.PROJ_VER}} \
28
28
-t ghcr.io/{{.ORG_NAME}}/{{.PACKAGE_NAME}}:latest \
29
29
-f Dockerfile.prod .
30
30
vars :
31
31
PROJ_VER :
32
32
sh : " task version"
33
- release :chart :
33
+ publish :chart :
34
34
prompt : " Before we build, is the version number up to date?"
35
35
desc : builds and publishes the helm chart for this project
36
36
dir : charts
40
40
vars :
41
41
PROJ_VER :
42
42
sh : " task version"
43
- release :tag :
43
+ publish :tag :
44
44
prompt : " Before we push, is the version number up to date?"
45
45
desc : tag a release and push to origin
46
46
summary : |
You can’t perform that action at this time.
0 commit comments