File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ docker-run-release: export pkg=/go/src/github.com/databus23/helm-diff
55
55
docker-run-release :
56
56
git checkout master
57
57
git push
58
- docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd) :$(pkg ) -w $(pkg ) golang:1.17.5 make bootstrap release
58
+ docker run -it --rm -e GITHUB_TOKEN -v $(shell pwd) :$(pkg ) -w $(pkg ) golang:1.18.1 make bootstrap release
59
59
60
60
.PHONY : dist
61
61
dist : export COPYFILE_DISABLE=1 # teach OSX tar to not put ._* files in tar archive
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -x
3
+ apt-get update
4
+ apt-get install bzip2
3
5
4
6
if [ ! -f bin/github-release ]; then
5
7
OS=$( uname)
6
- curl -L https://github.com/aktau/github-release/releases/download/v0.7.2/$OS -amd64-github-release.tar.bz2 | tar -C bin/ -jvx --strip-components=3
8
+ mkdir -p bin
9
+ curl -L https://github.com/aktau/github-release/releases/download/v0.10.0/$OS -amd64-github-release.bz2 | bzcat > bin/github-release
10
+ chmod +x bin/github-release
7
11
fi
8
12
9
13
user=databus23
You can’t perform that action at this time.
0 commit comments