We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7de38 commit 3130c7aCopy full SHA for 3130c7a
.github/workflows/ci.yml
@@ -197,3 +197,22 @@ jobs:
197
echo "I am $TEST_BAR, thanks"
198
echo "I am $BAR, thanks"
199
echo "I am $TEST_AAA, thanks"
200
+
201
+ testing03:
202
+ name: git clone and pull
203
+ runs-on: ubuntu-latest
204
+ steps:
205
+ - name: checkout
206
+ uses: actions/checkout@v1
207
208
+ - name: clone private repository
209
+ uses: ./
210
+ with:
211
+ host: ${{ secrets.HOST }}
212
+ username: ${{ secrets.USERNAME }}
213
+ key: ${{ secrets.KEY }}
214
+ port: ${{ secrets.PORT }}
215
+ script_stop: true
216
+ script: |
217
+ git clone https://appleboy:${{ secrets.TEST_TOKEN }}@github.com/go-training/self-runner.git test_repository
218
+ rm -rf test_repository
0 commit comments