ci: replace actions/checkout with native git clone
CI / validate (pull_request) Failing after 4s
CI / deploy (pull_request) Has been skipped

This commit is contained in:
Abiba (pi)
2026-06-28 00:41:49 +00:00
parent 67b6f64a93
commit c2f91f6e58
2 changed files with 14 additions and 7 deletions
+6 -3
View File
@@ -16,7 +16,10 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
run: |
git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . 2>&1
git fetch origin ${{ github.sha }} 2>/dev/null; git checkout ${{ github.sha }} 2>/dev/null || true
- name: Validate config schemas
run: |
@@ -50,8 +53,8 @@ jobs:
runs-on: ubuntu-latest
needs: [validate]
steps:
- uses: actions/checkout@v4
- name: Checkout
run: git clone --depth 1 http://192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git .
- name: Deploy to agents
env:
TAG: ${{ github.ref_name }}