Skip to content

Commit

Permalink
Merge pull request #23 from eerkunt/new_version
Browse files Browse the repository at this point in the history
Fixed travis where docker tags were not correct
  • Loading branch information
eerkunt authored Aug 23, 2018
2 parents aa823ac + b649d02 commit 2d4cd23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- docker build --compress --no-cache -t "$IMAGE_NAME" . || travis_terminate 1
- docker images || travis_terminate 1
- docker login -u "$DOCKER_HUB_USER" -p "$DOCKER_HUB_PASS" || travis_terminate 1
- docker tag "$IMAGE_NAME" eerkunt/terraform-compliance:travis || travis_terminate 1
- docker tag "$IMAGE_NAME" eerkunt/terraform-compliance:latest || travis_terminate 1
- docker tag "$IMAGE_NAME" "$IMAGE_NAME":"$RELEASE_VERSION" || travis_terminate 1
- docker push "$IMAGE_NAME":travis || travis_terminate 1
- docker push "$IMAGE_NAME":latest || travis_terminate 1
- docker push "$IMAGE_NAME":"$RELEASE_VERSION" || travis_terminate 1

- stage: Release (GitHub)
Expand Down
2 changes: 1 addition & 1 deletion terraform_compliance/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from git import Repo

__app_name__ = "terraform-compliance"
__version__ = "0.3.4"
__version__ = "0.3.5"


class ArgHandling(object):
Expand Down

0 comments on commit 2d4cd23

Please sign in to comment.