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 +4 -4
- data/CHANGELOG.md +9 -0
- data/Dockerfile +4 -0
- data/commands/publish/git-push +2 -2
- data/lib/samus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c038301b1bf59c449e416b5b3f05f31ac0139b2207d092c3696deea61e4603f9
|
4
|
+
data.tar.gz: eac508b89f31a47be2dd13b01fcca4629c970bb1c71145721d69f98440520beb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1fc7a47c51a39c5eff31bac737e57a12e16982ba46b321f20cb6366bcf4a5d0f02d65953dae51b27c700bb2d75c7bd98a679abdbda08354cef3ab600ab6c6a4
|
7
|
+
data.tar.gz: caac9f91cc93cbe99e5efdc0f3e010fe066386e55baf65a60a964a18f380393b1a1d1f697574dbbc2a84699a2499c1f06b9d4f71fad4e3e0fc5864c34a580e67
|
data/CHANGELOG.md
CHANGED
@@ -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
|
data/commands/publish/git-push
CHANGED
@@ -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
|
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"
|
data/lib/samus/version.rb
CHANGED