Compare commits
8 Commits
1112550f30
..
1.6.1
| Author | SHA1 | Date | |
|---|---|---|---|
| d398d6da0d | |||
| 1846212e68 | |||
| 2c21e132b5 | |||
| 6a6638252a | |||
| d597071e40 | |||
|
24ed80e146
|
|||
| 9a089c8af7 | |||
| b310c8df57 |
@@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.6.1] - 2026-01-19
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Standardize Dockerfile stage names to uppercase
|
||||||
|
|
||||||
|
### Build
|
||||||
|
|
||||||
|
- Support multi-architecture builds in Dockerfile
|
||||||
|
|
||||||
## [1.6.0] - 2026-01-16
|
## [1.6.0] - 2026-01-16
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
|||||||
+1
-1
@@ -17,7 +17,7 @@ RUN ["/bin/bash", "-c", "cat coverage.txt.tmp | grep -v -f <(find . -type f | xa
|
|||||||
RUN go tool cover -html=coverage.txt -o coverage.html
|
RUN go tool cover -html=coverage.txt -o coverage.html
|
||||||
RUN go tool cover -func=coverage.txt
|
RUN go tool cover -func=coverage.txt
|
||||||
RUN rm coverage.txt.tmp
|
RUN rm coverage.txt.tmp
|
||||||
RUN iGOOS=${TARGETOS} GOARCH=${TARGETARCH} CGO_ENABLED=0 go build -mod=readonly -o release/default-request-adder -ldflags '-w -s'
|
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} CGO_ENABLED=0 go build -mod=readonly -o release/default-request-adder -ldflags '-w -s'
|
||||||
|
|
||||||
FROM scratch AS export
|
FROM scratch AS export
|
||||||
COPY --from=build /build/coverage.txt /
|
COPY --from=build /build/coverage.txt /
|
||||||
|
|||||||
Reference in New Issue
Block a user