Skip to content

Commit 80acbdf

Browse files
committed
ci: use proper git ref for versioning
Signed-off-by: CrazyMax <[email protected]> (cherry picked from commit fabf9cd)
1 parent dcf6639 commit 80acbdf

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ WORKDIR /go/src/github.com/docker/distribution
1212
FROM base AS build
1313
ENV GO111MODULE=auto
1414
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
1519
ARG TARGETPLATFORM
1620
ARG PKG="github.com/distribution/distribution"
1721
ARG BUILDTAGS="include_oss include_gcs"
@@ -28,7 +32,7 @@ RUN --mount=type=bind,rw \
2832
--files="LICENSE" \
2933
--files="README.md"
3034

31-
FROM scratch AS artifacts
35+
FROM scratch AS artifact
3236
COPY --from=build /out/*.tar.gz /
3337
COPY --from=build /out/*.zip /
3438
COPY --from=build /out/*.sha256 /

docker-bake.hcl

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
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+
113
group "default" {
214
targets = ["image-local"]
315
}
@@ -8,12 +20,14 @@ target "docker-metadata-action" {
820
}
921

1022
target "binary" {
23+
inherits = ["_common"]
1124
target = "binary"
1225
output = ["./bin"]
1326
}
1427

1528
target "artifact" {
16-
target = "artifacts"
29+
inherits = ["_common"]
30+
target = "artifact"
1731
output = ["./bin"]
1832
}
1933

@@ -30,7 +44,7 @@ target "artifact-all" {
3044
}
3145

3246
target "image" {
33-
inherits = ["docker-metadata-action"]
47+
inherits = ["_common", "docker-metadata-action"]
3448
}
3549

3650
target "image-local" {

0 commit comments

Comments
 (0)