chore: add ssh private key for pizza engine (#587)

Co-authored-by: hardy <luohf@infinilabs.com>
This commit is contained in:
Hardy
2025-05-31 15:51:20 +08:00
committed by GitHub
parent e1d1bc2684
commit 94d7f809d2

View File

@@ -91,6 +91,18 @@ jobs:
- name: Install app dependencies and build web
run: pnpm install --frozen-lockfile
- name: Set up SSH agent for private repository clone
if: matrix.platform != 'i686-pc-windows-msvc'
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Add Git server to known hosts
if: matrix.platform != 'i686-pc-windows-msvc'
run: |
mkdir -p ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
chmod 600 ~/.ssh/known_hosts
- name: Pizza engine features setup
if: matrix.platform != 'i686-pc-windows-msvc'
run: |