samus 1.6.1 → 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ae4a13994f75fa115d31ade96c4c0161ff598d16dc15cd14b4516c3e9e8b3c6
4
- data.tar.gz: db6f2f3cb2f3a2fc7c8ebee5219cce7a3161964dd5ccb99b2b296b0adc23a6b7
3
+ metadata.gz: c038301b1bf59c449e416b5b3f05f31ac0139b2207d092c3696deea61e4603f9
4
+ data.tar.gz: eac508b89f31a47be2dd13b01fcca4629c970bb1c71145721d69f98440520beb
5
5
  SHA512:
6
- metadata.gz: a127b89b56ef3da685a8b7345f18846962659e51a8358309cff0a7ef8db8f576b46fa1762b31dd9232cfa20c9a664a41fc0ea71630efde855d37da638c2ae2d3
7
- data.tar.gz: 8e6bf2f2da5d98a85f5d0b78aa54290298157051598dbb2d7635ea2a96d230e1e7ff364342b6f308d098873acc7a41c4661e87f5cdb5b592c832479224665dcd
6
+ metadata.gz: a1fc7a47c51a39c5eff31bac737e57a12e16982ba46b321f20cb6366bcf4a5d0f02d65953dae51b27c700bb2d75c7bd98a679abdbda08354cef3ab600ab6c6a4
7
+ data.tar.gz: caac9f91cc93cbe99e5efdc0f3e010fe066386e55baf65a60a964a18f380393b1a1d1f697574dbbc2a84699a2499c1f06b9d4f71fad4e3e0fc5864c34a580e67
@@ -1,3 +1,12 @@
1
+ # 1.6.0 - July 19, 2018
2
+
3
+ - Add support for credentials for git-push. Add a credentials file with
4
+ an RSA key in the format `Key: ...RSA KEY HERE...`.
5
+ - Add experimental support for publishing via `lsegal/samus` Docker image. Use
6
+ `samus publish --docker project-vX.Y.Z.tar.gz` to perform commands in a
7
+ Docker image with the base support for all default publish commands. You must
8
+ have Docker installed to use this flag.
9
+
1
10
  # 1.4.3 - May 19, 2014
2
11
 
3
12
  - Add `build/make-task` command to run a make task.
data/Dockerfile CHANGED
@@ -3,6 +3,10 @@ FROM python:3.7-alpine
3
3
  RUN apk add openssh ruby ruby-json nodejs git curl
4
4
  RUN pip install awscli
5
5
  RUN gem install rake --no-rdoc --no-ri
6
+ RUN mkdir -p ~/.ssh
7
+ RUN echo "Host *" > ~/.ssh/config
8
+ RUN echo " StrictHostKeyChecking no" >> ~/.ssh/config
9
+ RUN chmod 400 ~/.ssh/config
6
10
 
7
11
  COPY . /samus
8
12
  ENV PATH=$PATH:/samus/bin
@@ -14,9 +14,9 @@ esac
14
14
 
15
15
  cd $dir
16
16
  echo "-----BEGIN RSA PRIVATE KEY-----" > .sshkey
17
- echo "$__creds_secret" >> .sshkey
17
+ echo "$__creds_secret" | fold -w 65 >> .sshkey
18
18
  echo "-----END RSA PRIVATE KEY-----" >> .sshkey
19
- chmod 600 .sshkey
19
+ chmod 400 .sshkey
20
20
 
21
21
  for r in $_remotes; do
22
22
  ssh-agent sh -c "ssh-add .sshkey; git push $r $_refs"
@@ -1,3 +1,3 @@
1
1
  module Samus
2
- VERSION = '1.6.1'.freeze
2
+ VERSION = '1.6.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loren Segal