From 8510e67b254bb5e5649cd2c89d781d3ca48817f6 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 29 Jul 2018 02:33:27 -0400 Subject: [PATCH 1/2] fix: properly setup .env.docker file for releases --- .circleci/config.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c0608d2..9a6291a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,13 @@ jobs: docker_layer_caching: true steps: - checkout - - run: make version + - run: + command: | + make version + if [[ "$CIRCLE_BRANCH" == "release" ]]; then + export PACKAGECLOUD_REPOSITORY=dokku/dokku + make .env.docker + fi - run: make circleci - run: make build-docker-image - run: @@ -25,8 +31,5 @@ jobs: command: | if [[ "$CIRCLE_BRANCH" == "release" ]]; then make release-in-docker - export PACKAGECLOUD_REPOSITORY=dokku/dokku - make release-packagecloud-in-docker - else - make release-packagecloud-in-docker fi + make release-packagecloud-in-docker From ed9c2b85819ad787a5b953daf752d04ad29f32f6 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 29 Jul 2018 02:34:04 -0400 Subject: [PATCH 2/2] Release 0.1.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dab9fb9..c771694 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ MAINTAINER = josegonzalez MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = go-procfile-util HARDWARE = $(shell uname -m) -BASE_VERSION ?= 0.1.1 +BASE_VERSION ?= 0.1.2 IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY) PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish