This repository was archived by the owner on Jun 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+
4
+ ## Version 0.1.2 (2019-12-20)
5
+
6
+ * Fix: Binary releases now contain an executable built for the right system (#4 )
7
+ * Fix: Appveyor pipelines triggered for a tag incorrectly showed a branch as reference instead of a tag
8
+
9
+
3
10
## Version 0.1.1 (2019-12-18)
4
11
5
12
* Support for private GitLab instances [ #2 ]
Original file line number Diff line number Diff line change @@ -46,13 +46,13 @@ releases: man.go $(BUILD) $(BUILD)/LICENSE $(BUILD)/$(EXEC).man.1 $(BUILD)/$(EXE
46
46
pandoc -v | head -n1 && \
47
47
for GOARCH in amd64; \
48
48
do \
49
- for GOOS in linux freebsd openbsd netbsd osx ; \
49
+ for GOOS in linux freebsd openbsd netbsd darwin ; \
50
50
do \
51
51
BUILD_VERSION=" $( PACKAGE) -$$ (git describe --tags --dirty)-$$ GOOS-$$ GOARCH" && \
52
52
ARCHIVE=" $( BUILD) /$$ BUILD_VERSION.tar.gz" && \
53
53
echo " Building $$ ARCHIVE..." && \
54
54
mkdir -p " $( BUILD) /$$ BUILD_VERSION" && \
55
- go build -ldflags " -X main.Version=$$ BUILD_VERSION" -o " $( BUILD) /$( EXEC) " && \
55
+ GOOS= " $$ GOOS " GOARCH= " $$ GOARCH " go build -ldflags " -X main.Version=$$ BUILD_VERSION" -o " $( BUILD) /$( EXEC) " && \
56
56
cp " $( BUILD) /$( EXEC) " " $( BUILD) /LICENSE" " $( BUILD) /$( EXEC) .man.html" " $( BUILD) /$( EXEC) .man.1" " $( BUILD) /$$ BUILD_VERSION/" && \
57
57
tar -C " $( BUILD) " -czf " $$ ARCHIVE" " $$ BUILD_VERSION" ; \
58
58
done ; \
You can’t perform that action at this time.
0 commit comments