File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 41
41
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
42
43
43
- name : Setup Docker buildx
44
+ if : steps.release.outputs.new_release_published == 'true'
44
45
uses : docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
45
46
46
47
- name : Log in to the Container registry
54
55
55
56
- name : Docker meta
56
57
uses : docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c # v5.5.0
58
+ if : steps.release.outputs.new_release_published == 'true'
57
59
id : meta
58
60
with :
59
61
images : |
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ RUN apt-get update \
34
34
&& rm -rf /var/lib/apt/lists/*
35
35
36
36
FROM deps-kube AS deps-yq
37
- ENV YQ_VERSION="${ENV_YQ_VERSION:- v4.30.6} "
37
+ ENV YQ_VERSION="v4.30.6"
38
38
ENV YQ_BINARY="yq_linux_amd64"
39
39
RUN wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/${YQ_BINARY}.tar.gz -O - | tar xz && mv ${YQ_BINARY} /usr/bin/yq
40
40
You can’t perform that action at this time.
0 commit comments