Skip to content

Commit

Permalink
disable CGO & fix permission
Browse files Browse the repository at this point in the history
  • Loading branch information
vflaux committed Jan 21, 2023
1 parent 0efd6c2 commit 01b3040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
os: ["linux"]
arch: ["amd64", "arm64"]
env:
CGO_ENABLED: 0
GOOS: "${{matrix.os}}"
GOARCH: "${{matrix.arch}}"
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add make --no-cache
ARG TARGETOS
ARG TARGETARCH

COPY bin/semver-tagger_${TARGETOS}_${TARGETARCH} /usr/local/bin/semver-tagger
COPY --chmod=555 bin/semver-tagger_${TARGETOS}_${TARGETARCH} /usr/local/bin/semver-tagger

ARG VENDOR
ARG SOURCE
Expand Down

0 comments on commit 01b3040

Please sign in to comment.