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

* secret -> secrets (#14)

This commit is contained in:
shimataro 2019-09-22 07:58:50 +09:00 committed by GitHub
parent ee1e03f3de
commit 5b7947ebcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,8 +18,8 @@ steps:
- name: Install SSH key - name: Install SSH key
uses: shimataro/ssh-key-action@v1 uses: shimataro/ssh-key-action@v1
with: with:
private-key: ${{ secret.SSH_KEY }} private-key: ${{ secrets.SSH_KEY }}
public-key: ${{ secret.SSH_KEY_PUBLIC }} public-key: ${{ secrets.SSH_KEY_PUBLIC }}
name: id_rsa # optional name: id_rsa # optional
- name: Install packages - name: Install packages
run: apt install openssh-client rsync run: apt install openssh-client rsync