Skip to content

Commit

Permalink
Merge pull request #85 from viktorbenei/master
Browse files Browse the repository at this point in the history
finalizing 0.9.9
  • Loading branch information
viktorbenei committed Sep 21, 2015
2 parents 306e536 + da75b63 commit dd37e94
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _changelogs/0.9.9.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 13 additions & 0 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit dd37e94

Please sign in to comment.