File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ RUN --mount=type=bind,target=. \
109
109
EOT
110
110
111
111
FROM base AS build-darwin
112
+ ARG TARGETOS
112
113
ARG TARGETARCH
113
114
ARG TARGETVARIANT
114
115
RUN --mount=type=bind,target=. \
@@ -121,6 +122,9 @@ RUN --mount=type=bind,target=. \
121
122
xx-go install std
122
123
xx-go build -ldflags "$(cat /tmp/.ldflags)" -o /out/docker-credential-osxkeychain-${TARGETARCH}${TARGETVARIANT} ./osxkeychain/cmd/
123
124
xx-verify /out/docker-credential-osxkeychain-${TARGETARCH}${TARGETVARIANT}
125
+
126
+ xx-go build -ldflags "$(cat /tmp/.ldflags)" -o /out/docker-credential-pass-${TARGETOS}-${TARGETARCH}${TARGETVARIANT} ./pass/cmd/
127
+ xx-verify /out/docker-credential-pass-${TARGETOS}-${TARGETARCH}${TARGETVARIANT}
124
128
EOT
125
129
126
130
FROM base AS build-windows
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ linuxrelease:
37
37
osxrelease :
38
38
mkdir -p release
39
39
cd bin && tar cvfz ../release/docker-credential-osxkeychain-v$(VERSION ) -amd64.tar.gz docker-credential-osxkeychain
40
+ cd bin && tar cvfz ../release/docker-credential-pass-v$(VERSION ) -darwin-amd64.tar.gz docker-credential-pass
40
41
41
42
winrelease :
42
43
mkdir -p release
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
// PASS_FOLDER contains the directory where credentials are stored
23
23
const PASS_FOLDER = "docker-credential-helpers" //nolint:revive
24
24
25
- // Pass handles secrets using Linux secret-service as a store.
25
+ // Pass handles secrets using pass as a store.
26
26
type Pass struct {}
27
27
28
28
// Ideally these would be stored as members of Pass, but since all of Pass's
You can’t perform that action at this time.
0 commit comments