File tree 2 files changed +21
-3
lines changed
2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ WORKDIR /go/src/github.com/docker/distribution
12
12
FROM base AS build
13
13
ENV GO111MODULE=auto
14
14
ENV CGO_ENABLED=0
15
+ # GIT_REF is used by goreleaser-xx to handle the proper git ref when available.
16
+ # It will fallback to the working tree info if empty and use "git tag --points-at"
17
+ # or "git describe" to define the version info.
18
+ ARG GIT_REF
15
19
ARG TARGETPLATFORM
16
20
ARG PKG="github.com/distribution/distribution"
17
21
ARG BUILDTAGS="include_oss include_gcs"
@@ -28,7 +32,7 @@ RUN --mount=type=bind,rw \
28
32
--files="LICENSE" \
29
33
--files="README.md"
30
34
31
- FROM scratch AS artifacts
35
+ FROM scratch AS artifact
32
36
COPY --from=build /out/*.tar.gz /
33
37
COPY --from=build /out/*.zip /
34
38
COPY --from=build /out/*.sha256 /
Original file line number Diff line number Diff line change
1
+ // GITHUB_REF is the actual ref that triggers the workflow
2
+ // https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
3
+ variable "GITHUB_REF" {
4
+ default = " "
5
+ }
6
+
7
+ target "_common" {
8
+ args = {
9
+ GIT_REF = GITHUB_REF
10
+ }
11
+ }
12
+
1
13
group "default" {
2
14
targets = [" image-local" ]
3
15
}
@@ -8,12 +20,14 @@ target "docker-metadata-action" {
8
20
}
9
21
10
22
target "binary" {
23
+ inherits = [" _common" ]
11
24
target = " binary"
12
25
output = [" ./bin" ]
13
26
}
14
27
15
28
target "artifact" {
16
- target = " artifacts"
29
+ inherits = [" _common" ]
30
+ target = " artifact"
17
31
output = [" ./bin" ]
18
32
}
19
33
@@ -30,7 +44,7 @@ target "artifact-all" {
30
44
}
31
45
32
46
target "image" {
33
- inherits = [" docker-metadata-action" ]
47
+ inherits = [" _common " , " docker-metadata-action" ]
34
48
}
35
49
36
50
target "image-local" {
You can’t perform that action at this time.
0 commit comments