ci: improve CI workflow for private repository cloning

- Add a new job for git clone and pull in CI
- Clone a private repository in CI with secrets
- Remove a directory in the cloned repository

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2023-04-13 14:14:37 +08:00
parent 2b7de38eed
commit ecec4be1aa

View File

@ -197,3 +197,21 @@ jobs:
echo "I am $TEST_BAR, thanks"
echo "I am $BAR, thanks"
echo "I am $TEST_AAA, thanks"
testing03:
name: git clone and pull
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v1
- name: clone private repository
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: |
git pull "https://appleboy:${{ secrets.GITHUB_PASSWORD }}@github.com/go-training/self-runner.git" test_repository
rm -rf test_repository