Skip to content

Commit

Permalink
Version 1.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry McConville committed Oct 25, 2023
1 parent 9eabc9f commit 656e7dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.5
1.0.6
7 changes: 2 additions & 5 deletions release-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ git pull origin master
version=$(cat VERSION)
echo "version: $version"

# exist if tag already exists.
# exit if tag already exists.
if [ $(git tag -l "$version") ]; then
echo "tag already exists. Ensure version number has been update in VERSION."
exit 1
Expand All @@ -21,7 +21,4 @@ if ! [[ "$version" =~ ^[0-9.]+$ ]]; then
exit 1
fi

docker build -t githubexporter/github-exporter:latest -t githubexporter/github-exporter:$version .
docker push githubexporter/github-exporter:latest
docker push githubexporter/github-exporter:$version

docker buildx build --platform linux/amd64 -t githubexporter/github-exporter:latest -t githubexporter/github-exporter:$version --push .

0 comments on commit 656e7dc

Please sign in to comment.