Commit e2b89be 1 parent a3139f7 commit e2b89be Copy full SHA for e2b89be
File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM ovhcom/utask:DOCKER_TAG AS builder
1
+ ARG UTASK_VERSION=DOCKER_TAG
2
+ FROM ovhcom/utask:${UTASK_VERSION} AS builder
2
3
3
4
COPY . /go/src/github.com/ovh/utask
4
5
WORKDIR /go/src/github.com/ovh/utask
5
6
RUN make
6
7
7
- FROM ovhcom/utask:DOCKER_TAG
8
+ FROM ovhcom/utask:${UTASK_VERSION}
8
9
9
10
COPY templates /app/templates
10
11
COPY --from=builder /go/src/github.com/ovh/utask/plugins /app/plugins
Original file line number Diff line number Diff line change 11
11
version=` git describe --tags $( git rev-list --tags --max-count=1) `
12
12
13
13
write_block () {
14
- echo " cat <<EOF >$1 " >> $dst
14
+ echo " cat <<' EOF' >$1 " >> $dst
15
15
sed " s/DOCKER_TAG/$version /" $2 >> $dst
16
16
echo " EOF" >> $dst
17
17
echo " " >> $dst
Original file line number Diff line number Diff line change 73
73
"foreach" : {
74
74
"type" : " string" ,
75
75
"description" : " Elements on which the step will loop"
76
+ },
77
+ "json_schema" : {
78
+ "type" : " object" ,
79
+ "description" : " Elements on which the step will loop"
76
80
}
77
81
}
78
82
},
You can’t perform that action at this time.
0 commit comments