File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 5151 - name : Check version
5252 id : check_version
5353 run : |
54- ./out/${BINARY}-linux-amd64 -version | grep "${{ github.event.release.tag_name }}"
54+ echo v$( ./out/${BINARY}-linux-amd64 -version) | grep "${{ github.event.release.tag_name }}"
5555
5656 - name : Artifact
5757 id : artifact
Original file line number Diff line number Diff line change 11## Changelog
22##### master
33
4+ ##### version 0.16.2
5+ * Another attempt to fix issues with release upload #449
6+
47##### version 0.16.1
58* Fix issues with upload #448
69
Original file line number Diff line number Diff line change 11FROM golang:1.17.4-alpine3.15 AS build
22
3- ARG gocarbon_version=0.16.1
3+ ARG gocarbon_version=0.16.2
44ARG gocarbon_repo=https://github.com/go-graphite/go-carbon.git
5- RUN apk add --update git make \
5+ RUN apk add --update git make bash \
66 && git clone "${gocarbon_repo}" /usr/local/src/go-carbon \
77 && cd /usr/local/src/go-carbon \
88 && git checkout tags/v"${gocarbon_version}" \
9- && make \
9+ && make go-carbon \
1010 && chmod +x go-carbon && cp -fv go-carbon /tmp
1111
1212FROM alpine:3.15
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
2727)
2828
2929// Version of go-carbon
30- const Version = "0.16.1 "
30+ const Version = "0.16.2 "
3131
3232var BuildVersion = "(development version)"
3333
You can’t perform that action at this time.
0 commit comments