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 51
51
- name : Check version
52
52
id : check_version
53
53
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 }}"
55
55
56
56
- name : Artifact
57
57
id : artifact
Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
##### master
3
3
4
+ ##### version 0.16.2
5
+ * Another attempt to fix issues with release upload #449
6
+
4
7
##### version 0.16.1
5
8
* Fix issues with upload #448
6
9
Original file line number Diff line number Diff line change 1
1
FROM golang:1.17.4-alpine3.15 AS build
2
2
3
- ARG gocarbon_version=0.16.1
3
+ ARG gocarbon_version=0.16.2
4
4
ARG 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 \
6
6
&& git clone "${gocarbon_repo}" /usr/local/src/go-carbon \
7
7
&& cd /usr/local/src/go-carbon \
8
8
&& git checkout tags/v"${gocarbon_version}" \
9
- && make \
9
+ && make go-carbon \
10
10
&& chmod +x go-carbon && cp -fv go-carbon /tmp
11
11
12
12
FROM alpine:3.15
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
)
28
28
29
29
// Version of go-carbon
30
- const Version = "0.16.1 "
30
+ const Version = "0.16.2 "
31
31
32
32
var BuildVersion = "(development version)"
33
33
You can’t perform that action at this time.
0 commit comments