-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from shimataro/develop
version 2.0.3
- Loading branch information
Showing
20 changed files
with
1,326 additions
and
603 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
on: push | ||
name: macOS | ||
name: macOS Catalina | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
ssh: | ||
name: Connect to github.com | ||
runs-on: macos-latest | ||
runs-on: macos-10.15 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
@@ -20,7 +24,7 @@ jobs: | |
run: git clone [email protected]:shimataro/ssh-key-action.git tmp | ||
ssh-with-name: | ||
name: Connect to github.com with name and config | ||
runs-on: macos-latest | ||
runs-on: macos-10.15 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
6 changes: 5 additions & 1 deletion
6
.github/workflows/verify-on-ubuntu1604.yml → .github/workflows/verify-on-ubuntu-1604.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
on: push | ||
name: Ubuntu | ||
name: Ubuntu 18.04 | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
ssh: | ||
name: Connect to github.com | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
@@ -20,7 +24,7 @@ jobs: | |
run: git clone [email protected]:shimataro/ssh-key-action.git tmp | ||
ssh-with-name: | ||
name: Connect to github.com with name and config | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
name: Ubuntu 20.04 | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
ssh: | ||
name: Connect to github.com | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l ~/.ssh | ||
- name: git clone through SSH | ||
run: git clone [email protected]:shimataro/ssh-key-action.git tmp | ||
ssh-with-name: | ||
name: Connect to github.com with name and config | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
name: ssh_key_name # optional | ||
config: | # optional | ||
Host github | ||
Hostname github.com | ||
User git | ||
IdentityFile ~/.ssh/ssh_key_name | ||
- name: print created files | ||
run: ls -l ~/.ssh | ||
- name: git clone through SSH | ||
run: git clone github:shimataro/ssh-key-action.git tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
on: push | ||
name: Windows | ||
name: Windows Server 2019 | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
ssh: | ||
name: Connect to github.com | ||
runs-on: windows-latest | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
@@ -20,7 +24,7 @@ jobs: | |
run: git clone [email protected]:shimataro/ssh-key-action.git tmp | ||
ssh-with-name: | ||
name: Connect to github.com with name and config | ||
runs-on: windows-latest | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.