From 6173d0badc4462ba917057161e7c7d77e41f9baa Mon Sep 17 00:00:00 2001 From: shimataro Date: Sun, 21 Mar 2021 14:25:07 +0900 Subject: [PATCH] update README; add install commands --- .../workflows/verify-on-container-ubuntu.yml | 18 +++++++++--------- README.md | 6 +++--- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/verify-on-container-ubuntu.yml b/.github/workflows/verify-on-container-ubuntu.yml index e6f13fb..b907cc6 100644 --- a/.github/workflows/verify-on-container-ubuntu.yml +++ b/.github/workflows/verify-on-container-ubuntu.yml @@ -25,7 +25,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key @@ -56,7 +56,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key @@ -87,7 +87,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key @@ -119,7 +119,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (dummy) @@ -156,7 +156,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (replace) @@ -189,7 +189,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (dummy) @@ -226,7 +226,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (replace) @@ -259,7 +259,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (dummy) @@ -297,7 +297,7 @@ jobs: - name: Install packages run: | apt update - apt -y install openssh-client git + apy install -y openssh-client git - name: Checkout source codes uses: actions/checkout@v2 - name: Install SSH key (replace) diff --git a/README.md b/README.md index 6e898d8..36cdc26 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ Useful for SCP, SFTP, and `rsync` over SSH in deployment script. tested on: * [all available virtual machines](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources) (Windows Server 2019, macOS Catalina, and Ubuntu 20.04/18.04/16.04) -* [Docker container (Ubuntu)](https://hub.docker.com/_/ubuntu) / requires `openssh-client` package -* [Docker container (CentOS)](https://hub.docker.com/_/centos) / requires `openssh-clients` package -* [Docker container (Alpine Linux)](https://hub.docker.com/_/alpine) / requires `openssh-client` package +* [Docker container (Ubuntu)](https://hub.docker.com/_/ubuntu) / requires `openssh-client` package; `apt install -y openssh-client` +* [Docker container (CentOS)](https://hub.docker.com/_/centos) / requires `openssh-clients` package; `yum install -y openssh-clients` +* [Docker container (Alpine Linux)](https://hub.docker.com/_/alpine) / requires `openssh-client` package; `apk add openssh-client` ## Usage