From da75b63ccc922ed2e68e8c0e25d5cf20b481bcd1 Mon Sep 17 00:00:00 2001 From: Viktor Benei Date: Mon, 21 Sep 2015 18:22:55 +0200 Subject: [PATCH] finalizing 0.9.9 --- Dockerfile | 6 ++++++ _changelogs/0.9.9.md | 2 +- bitrise.yml | 13 +++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d241050e..100c12f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,12 @@ RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get -y install git mercurial curl rsync ruby +# +# Install Bitrise CLI +RUN curl -L https://github.com/bitrise-io/bitrise/releases/download/1.1.2/bitrise-$(uname -s)-$(uname -m) > /usr/local/bin/bitrise +RUN chmod +x /usr/local/bin/bitrise +RUN bitrise setup --minimal + # From the official Golang Dockerfile # https://github.com/docker-library/golang/blob/master/1.4/Dockerfile RUN mkdir -p /go/src /go/bin && chmod -R 777 /go diff --git a/_changelogs/0.9.9.md b/_changelogs/0.9.9.md index 60faa916..2e2464ab 100644 --- a/_changelogs/0.9.9.md +++ b/_changelogs/0.9.9.md @@ -1,6 +1,6 @@ ## Changes -* `envman print` got format (--format) and expand (--expand) flags. Format specifies the print command output format (available: raw, json). If expand is set, the output will contains expanded envs. +* `envman print` got format (`--format`) and expand (`--expand`) flags. Format specifies the print command output format (available: `raw`, `json`). If expand is set, the output will contain expanded envs - with the exact values which would be available for the target if you would `envman run`. ## Install diff --git a/bitrise.yml b/bitrise.yml index 06fbfdbc..9025a325 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -144,6 +144,19 @@ workflows: inputs: - content: docker rmi $(docker images -f "dangling=true" -q) + create-release-with-docker-compose: + steps: + - script: + title: Creating deploy + inputs: + - content: |- + #!/bin/bash + set -e + set -v + + docker-compose build --no-cache app + docker-compose run --rm app bitrise run create-release + create-release: steps: - script: