mirror of
https://githubfast.com/appleboy/ssh-action
synced 2024-10-31 15:46:30 +00:00
chore: add testing
This commit is contained in:
parent
0225b4ff08
commit
67fd4a15e9
72
.github/workflows/ci.yml
vendored
72
.github/workflows/ci.yml
vendored
@ -8,7 +8,7 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
testing01:
|
testing01:
|
||||||
name: Build
|
name: default flag testing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
@ -78,40 +78,6 @@ jobs:
|
|||||||
mkdir abc/def
|
mkdir abc/def
|
||||||
ls -al
|
ls -al
|
||||||
|
|
||||||
- name: pass environment
|
|
||||||
uses: ./
|
|
||||||
env:
|
|
||||||
FOO: "BAR"
|
|
||||||
with:
|
|
||||||
host: ${{ secrets.HOST }}
|
|
||||||
username: ${{ secrets.USERNAME }}
|
|
||||||
key: ${{ secrets.KEY }}
|
|
||||||
port: ${{ secrets.PORT }}
|
|
||||||
envs: FOO
|
|
||||||
script: |
|
|
||||||
echo "I am $FOO, thanks"
|
|
||||||
echo "I am $BAR, thanks"
|
|
||||||
|
|
||||||
- name: pass multiple environment
|
|
||||||
uses: ./
|
|
||||||
env:
|
|
||||||
FOO: "BAR"
|
|
||||||
BAR: "FOO"
|
|
||||||
SHA: ${{ github.sha }}
|
|
||||||
PORT: ${{ secrets.PORT }}
|
|
||||||
with:
|
|
||||||
host: ${{ secrets.HOST }}
|
|
||||||
username: ${{ secrets.USERNAME }}
|
|
||||||
key: ${{ secrets.KEY }}
|
|
||||||
port: ${{ secrets.PORT }}
|
|
||||||
envs: FOO,BAR,SHA,PORT
|
|
||||||
script: |
|
|
||||||
echo "I am $FOO, thanks"
|
|
||||||
echo "I am $BAR, thanks"
|
|
||||||
echo "sha: $SHA"
|
|
||||||
echo "port: $PORT"
|
|
||||||
sh test.sh
|
|
||||||
|
|
||||||
- name: ssh key passphrase
|
- name: ssh key passphrase
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
@ -174,12 +140,46 @@ jobs:
|
|||||||
# script: whoami
|
# script: whoami
|
||||||
|
|
||||||
testing02:
|
testing02:
|
||||||
name: Build
|
name: testing with envs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: pass environment
|
||||||
|
uses: ./
|
||||||
|
env:
|
||||||
|
FOO: "BAR"
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
key: ${{ secrets.KEY }}
|
||||||
|
port: ${{ secrets.PORT }}
|
||||||
|
envs: FOO
|
||||||
|
script: |
|
||||||
|
echo "I am $FOO, thanks"
|
||||||
|
echo "I am $BAR, thanks"
|
||||||
|
|
||||||
|
- name: pass multiple environment
|
||||||
|
uses: ./
|
||||||
|
env:
|
||||||
|
FOO: "BAR"
|
||||||
|
BAR: "FOO"
|
||||||
|
SHA: ${{ github.sha }}
|
||||||
|
PORT: ${{ secrets.PORT }}
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
key: ${{ secrets.KEY }}
|
||||||
|
port: ${{ secrets.PORT }}
|
||||||
|
envs: FOO,BAR,SHA,PORT
|
||||||
|
script: |
|
||||||
|
echo "I am $FOO, thanks"
|
||||||
|
echo "I am $BAR, thanks"
|
||||||
|
echo "sha: $SHA"
|
||||||
|
echo "port: $PORT"
|
||||||
|
sh test.sh
|
||||||
|
|
||||||
- name: custom envs format
|
- name: custom envs format
|
||||||
uses: ./
|
uses: ./
|
||||||
env:
|
env:
|
||||||
|
Loading…
Reference in New Issue
Block a user