We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b5da8 commit 2dc3700Copy full SHA for 2dc3700
1 file changed
.github/workflows/main.yml
@@ -24,12 +24,14 @@ jobs:
24
run: |
25
ssh ${{ secrets.EC2_USER }}@${{ secrets.EC2_HOST }} << 'EOF'
26
set -e
27
- cd ${{ secrets.EC2_PATH }}
28
29
- # Git pull or clone if not yet
30
- if [ ! -d ".git" ]; then
31
- git clone https://github.com/${{ github.repository }} .
32
- else
33
- git pull origin main
34
- fi
+ for dir in http1 http2 http3; do
+ cd /HTTP-Version-Test/docker/$dir/static
+ # Git pull or clone if not yet
+ if [ ! -d ".git" ]; then
+ git clone https://github.com/${{ github.repository }} .
+ else
+ git pull origin main
35
+ fi
36
+ done
37
EOF
0 commit comments