We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efd6c2 commit 01b3040Copy full SHA for 01b3040
.github/workflows/build-and-publish.yml
@@ -15,6 +15,7 @@ jobs:
15
os: ["linux"]
16
arch: ["amd64", "arm64"]
17
env:
18
+ CGO_ENABLED: 0
19
GOOS: "${{matrix.os}}"
20
GOARCH: "${{matrix.arch}}"
21
steps:
Dockerfile
@@ -7,7 +7,7 @@ RUN apk add make --no-cache
7
ARG TARGETOS
8
ARG TARGETARCH
9
10
-COPY bin/semver-tagger_${TARGETOS}_${TARGETARCH} /usr/local/bin/semver-tagger
+COPY --chmod=555 bin/semver-tagger_${TARGETOS}_${TARGETARCH} /usr/local/bin/semver-tagger
11
12
ARG VENDOR
13
ARG SOURCE
0 commit comments