Skip to content

Commit 98c69c8

Browse files
authored
Merge pull request #451 from deniszh/DZ-0.16.2
0.16.2
2 parents ac23322 + 955c3c2 commit 98c69c8

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
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

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
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

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM golang:1.17.4-alpine3.15 AS build
22

3-
ARG gocarbon_version=0.16.1
3+
ARG gocarbon_version=0.16.2
44
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 \
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

1212
FROM alpine:3.15

go-carbon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

3232
var BuildVersion = "(development version)"
3333

0 commit comments

Comments
 (0)