Skip to content

Commit

Permalink
Merge pull request #451 from deniszh/DZ-0.16.2
Browse files Browse the repository at this point in the history
0.16.2
  • Loading branch information
deniszh committed Feb 18, 2022
2 parents ac23322 + 955c3c2 commit 98c69c8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Check version
id: check_version
run: |
./out/${BINARY}-linux-amd64 -version | grep "${{ github.event.release.tag_name }}"
echo v$(./out/${BINARY}-linux-amd64 -version) | grep "${{ github.event.release.tag_name }}"
- name: Artifact
id: artifact
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
## Changelog
##### master

##### version 0.16.2
* Another attempt to fix issues with release upload #449

##### version 0.16.1
* Fix issues with upload #448

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
@@ -1,12 +1,12 @@
FROM golang:1.17.4-alpine3.15 AS build

ARG gocarbon_version=0.16.1
ARG gocarbon_version=0.16.2
ARG gocarbon_repo=https://github.com/go-graphite/go-carbon.git
RUN apk add --update git make \
RUN apk add --update git make bash \
&& git clone "${gocarbon_repo}" /usr/local/src/go-carbon \
&& cd /usr/local/src/go-carbon \
&& git checkout tags/v"${gocarbon_version}" \
&& make \
&& make go-carbon \
&& chmod +x go-carbon && cp -fv go-carbon /tmp

FROM alpine:3.15
Expand Down
2 changes: 1 addition & 1 deletion go-carbon.go
Expand Up @@ -27,7 +27,7 @@ import (
)

// Version of go-carbon
const Version = "0.16.1"
const Version = "0.16.2"

var BuildVersion = "(development version)"

Expand Down

0 comments on commit 98c69c8

Please sign in to comment.