3 Commits

Author SHA1 Message Date
c94d94aab3 bump to 0.0.2
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2019-05-16 10:07:59 +08:00
592a3daf58 upgrade to 1.5.1
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2019-05-16 10:07:41 +08:00
5942cfaf03 update
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2019-05-15 10:58:11 +08:00
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM appleboy/drone-ssh:1.5.0-linux-amd64 FROM appleboy/drone-ssh:1.5.1-linux-amd64
# Github labels # Github labels
LABEL "com.github.actions.name"="SSH Commands" LABEL "com.github.actions.name"="SSH Commands"
@ -9,7 +9,7 @@ LABEL "com.github.actions.color"="gray-dark"
LABEL "repository"="https://github.com/appleboy/ssh-action" LABEL "repository"="https://github.com/appleboy/ssh-action"
LABEL "homepage"="https://github.com/appleboy" LABEL "homepage"="https://github.com/appleboy"
LABEL "maintainer"="Bo-Yi Wu <appleboy.tw@gmail.com>" LABEL "maintainer"="Bo-Yi Wu <appleboy.tw@gmail.com>"
LABEL "version"="0.0.1" LABEL "version"="0.0.2"
ADD entrypoint.sh /entrypoint.sh ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh

View File

@ -98,6 +98,7 @@ action "Multiple Hosts" {
"--user", "actions", "--user", "actions",
"--script", "'whoami'", "--script", "'whoami'",
"--script", "'ls -al'", "--script", "'ls -al'",
"--script", "'cat test.txt'",
] ]
} }
``` ```