chore(auth): allow set password and private key at same time. (#226)

This commit is contained in:
Bo-Yi Wu 2023-02-28 17:11:47 +08:00 committed by GitHub
parent c1965ddd25
commit 7bf58514db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View File

@ -14,6 +14,26 @@ jobs:
- name: checkout
uses: actions/checkout@v1
- name: correct password but wrong key
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
key: "1234"
port: ${{ secrets.PORT }}
script: whoami
- name: wrong password but correct key
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: "abcdef"
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: whoami
- name: executing remote ssh commands using password
uses: ./
with:

View File

@ -1,4 +1,4 @@
FROM appleboy/drone-ssh:1.6.8-linux-amd64
FROM appleboy/drone-ssh
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh