shipitron 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Dockerfile.release +1 -1
- data/README.md +1 -0
- data/lib/shipitron/client/load_application_config.rb +7 -1
- data/lib/shipitron/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 428064c728cfd00ba1807fa1a655c1649a78323ea98f85be6f71baf6ae939892
|
|
4
|
+
data.tar.gz: facdb618cffd2c41256e40c436daf6fc6fb906073919959a9c21982dd0c95bee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88cf5a283cd744f88721e63f908c12964bfa2831fc51890d98dd5e28446c2e83a03c51bdec3cf2fa6c04acb5e234db4e3451a1e38c795d70e7ead705ac51b0db
|
|
7
|
+
data.tar.gz: e2a23cbc284326a66f49d60f7823ed5151e702b63e0bc9c111564a48649bdce7f9e8f18dd07bf7e6bc947b0272e7dadabb984efda647e958cb84e1ceefd4a0b9
|
data/Dockerfile.release
CHANGED
data/README.md
CHANGED
|
@@ -51,3 +51,4 @@ To release a new version:
|
|
|
51
51
|
- `docker run -it --rm -v ~/.gitconfig:/root/.gitconfig -v ~/.gitconfig.user:/root/.gitconfig.user -v ~/.ssh/id_rsa:/root/.ssh/id_rsa -v ~/.gem:/root/.gem -w /shipitron outstand/shipitron:dev rake release`
|
|
52
52
|
- `docker build -t outstand/shipitron:VERSION -f Dockerfile.release .`
|
|
53
53
|
- `docker push outstand/shipitron:VERSION`
|
|
54
|
+
- Update ECS task definition with new version
|
|
@@ -13,7 +13,13 @@ module Shipitron
|
|
|
13
13
|
context.repository_branch = config.repository_branch
|
|
14
14
|
context.s3_cache_bucket = config.cache_bucket
|
|
15
15
|
context.image_name = config.image_name
|
|
16
|
-
context.named_tag =
|
|
16
|
+
context.named_tag = begin
|
|
17
|
+
if config.named_tag.nil?
|
|
18
|
+
'latest'
|
|
19
|
+
else
|
|
20
|
+
config.named_tag
|
|
21
|
+
end
|
|
22
|
+
end
|
|
17
23
|
context.build_script = config.build_script
|
|
18
24
|
context.post_builds = begin
|
|
19
25
|
if config.post_builds.nil?
|
data/lib/shipitron/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shipitron
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Schlesinger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|