Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Feb 12, 2023
1 parent fcafccc commit e53ef2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ builds:
- linux
goarch:
- amd64
main: ./cmd/gh-setup/main.go
ldflags:
- -s -w -X github.com/k1LoW/gh-setup.version={{.Version}} -X github.com/k1LoW/gh-setup.commit={{.FullCommit}} -X github.com/k1LoW/gh-setup.date={{.Date}} -X github.com/k1LoW/gh-setup/version.Version={{.Version}}
-
Expand All @@ -22,6 +23,7 @@ builds:
goarch:
- amd64
- arm64
main: ./cmd/gh-setup/main.go
ldflags:
- -s -w -X github.com/k1LoW/gh-setup.version={{.Version}} -X github.com/k1LoW/gh-setup.commit={{.FullCommit}} -X github.com/k1LoW/gh-setup.date={{.Date}} -X github.com/k1LoW/gh-setup/version.Version={{.Version}}
-
Expand All @@ -32,6 +34,7 @@ builds:
- windows
goarch:
- amd64
main: ./cmd/gh-setup/main.go
ldflags:
- -s -w -X github.com/k1LoW/gh-setup.version={{.Version}} -X github.com/k1LoW/gh-setup.commit={{.FullCommit}} -X github.com/k1LoW/gh-setup.date={{.Date}} -X github.com/k1LoW/gh-setup/version.Version={{.Version}}
archives:
Expand Down
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# Changelog

## [v0.0.1](https://github.com/k1LoW/gh-setup/compare/3ad89381a358...v0.0.1) (2023-02-12)


## [v0.0.1](https://github.com/k1LoW/gh-setup/compare/3ad89381a358...v0.0.1) (2023-02-12)

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /workdir/gh-setup ./usr/bin
COPY --from=builder /workdir/ghsetup ./usr/bin

ENTRYPOINT ["/entrypoint.sh"]

Expand Down
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@ prerelease:
go mod tidy
ghch -w -N ${VER}
gocredits -skip-missing -w .
cat _EXTRA_CREDITS >> CREDITS
git add CHANGELOG.md CREDITS go.mod go.sum
git commit -m'Bump up version number'
git tag ${VER}

prerelease_for_tagpr:
gocredits -skip-missing -w .
cat _EXTRA_CREDITS >> CREDITS
git add CHANGELOG.md CREDITS go.mod go.sum

release:
Expand Down

0 comments on commit e53ef2f

Please sign in to comment.