1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

Merge branch 'develop' into feature/ignore-node-modules

This commit is contained in:
shimataro 2021-02-08 22:04:32 +09:00 committed by GitHub
commit 4c8cbf21ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Bundle dependencies (thanks [@tats-u](https://github.com/tats-u)) * Bundle dependencies (thanks [@tats-u](https://github.com/tats-u))
### Fixed
* comments in README (thanks [@KimSoungRyoul](https://github.com/KimSoungRyoul))
## [2.1.0] - 2020-08-15 ## [2.1.0] - 2020-08-15
### Changed ### Changed

View file

@ -67,8 +67,8 @@ steps:
with: with:
key: ${{ secrets.SSH_KEY_OF_TARGET }} key: ${{ secrets.SSH_KEY_OF_TARGET }}
name: id_rsa-target name: id_rsa-target
known_hosts: ${{ secrets.KNOWN_HOSTS_OF_TARGET }} # will be appended! known_hosts: ${{ secrets.KNOWN_HOSTS_OF_TARGET }} # will be appended to existing .ssh/known_hosts
config: | # will be appended! config: | # will be appended to existing .ssh/config
Host target Host target
HostName yyy.yyy.yyy.yyy HostName yyy.yyy.yyy.yyy
User user-of-target User user-of-target