From 03df4c0c2b0bd92ce2ef9f4ff0c5c977ff6c7add Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Sat, 11 Apr 2026 13:59:00 +0800 Subject: [PATCH] fix(ci): use public playbooks repo --- .github/workflows/pipeline.yaml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 0826f78..8dbd13f 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -149,7 +149,7 @@ jobs: TARGET_HOST: ${{ needs.prep.outputs.target_host }} RUN_APPLY: ${{ needs.prep.outputs.run_apply }} FRONTEND_IMAGE: ${{ needs.prep.outputs.image_ref }} - PLAYBOOKS_REPO: git@github.com:x-evor/playbooks.git + PLAYBOOKS_REPO: https://github.com/x-evor/playbooks.git steps: - name: Check Out Repository uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 @@ -164,17 +164,6 @@ jobs: python -m pip install --upgrade pip python -m pip install ansible - - name: Configure SSH For Playbooks Checkout - env: - PLAYBOOKS_REPO_SSH_KEY: ${{ secrets.PLAYBOOKS_REPO_SSH_KEY }} - run: | - mkdir -p ~/.ssh - chmod 700 ~/.ssh - printf '%s\n' "${PLAYBOOKS_REPO_SSH_KEY}" > ~/.ssh/id_ed25519 - chmod 600 ~/.ssh/id_ed25519 - ssh-keyscan github.com >> ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts - - name: Check Out Playbooks Repository run: | git clone "${PLAYBOOKS_REPO}" /tmp/playbooks