From b5300268fc83c887c0689aa5bc5d53914b52008e Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 9 Feb 2024 01:26:31 +0100 Subject: [PATCH] ci: ugly ci fix with ssh-agent --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a66dcf..355ed5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,9 @@ jobs: steps: - uses: arduino/setup-protoc@v2 - uses: actions/checkout@v3 + - uses: webfactory/ssh-agent@v0.7.0 + with: + ssh-private-key: ${{ secrets.ACTIONS_SSH_DEPLOY_KEY }} - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build --verbose --all-features - run: cargo test --verbose --all-features