-
-
Notifications
You must be signed in to change notification settings - Fork 87
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 #178 from shimataro/develop
version 2.2.0
- Loading branch information
Showing
31 changed files
with
2,078 additions
and
1,861 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
github: | ||
- shimataro | ||
custom: | ||
- "https://www.paypal.me/shimataro" |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ name: Build | |
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
|
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,95 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
name: Docker container (CentOS) | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
ssh-pem: | ||
name: Connect to github.com (PEM format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- centos:7 | ||
- centos:8 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
yum install -y git openssh-clients | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_PEM }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com:shimataro/ssh-key-action.git tmp | ||
ssh-pkcs8: | ||
name: Connect to github.com (PKCS8 format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- centos:7 | ||
- centos:8 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
yum install -y git openssh-clients | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_PKCS8 }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com:shimataro/ssh-key-action.git tmp | ||
ssh-rfc4716: | ||
name: Connect to github.com (RFC4716 format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- centos:7 | ||
- centos:8 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
yum install -y git openssh-clients | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_RFC4716 }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com: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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
name: Docker container (Ubuntu) | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
ssh-pem: | ||
name: Connect to github.com (PEM format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- ubuntu:16.04 | ||
- ubuntu:18.04 | ||
- ubuntu:20.04 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
apt update | ||
apt -y install openssh-client git | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_PEM }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com:shimataro/ssh-key-action.git tmp | ||
ssh-pkcs8: | ||
name: Connect to github.com (PKCS8 format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- ubuntu:16.04 | ||
- ubuntu:18.04 | ||
- ubuntu:20.04 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
apt update | ||
apt -y install openssh-client git | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_PKCS8 }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com:shimataro/ssh-key-action.git tmp | ||
ssh-rfc4716: | ||
name: Connect to github.com (RFC4716 format) | ||
runs-on: ${{ matrix.os }} | ||
container: ${{ matrix.container }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-16.04 | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
container: | ||
- ubuntu:16.04 | ||
- ubuntu:18.04 | ||
- ubuntu:20.04 | ||
fail-fast: false | ||
steps: | ||
- name: Install packages | ||
run: | | ||
apt update | ||
apt -y install openssh-client git | ||
- name: Checkout source codes | ||
uses: actions/checkout@v2 | ||
- name: Install SSH key | ||
uses: ./. | ||
with: | ||
key: ${{ secrets.SSH_KEY_RFC4716 }} | ||
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
- name: print created files | ||
run: ls -l /root/.ssh | ||
- name: git clone through SSH | ||
run: git clone git@github.com: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
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
Oops, something went wrong.