From 5502d2165bebf437018ce76b750c0362db109235 Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 17 Aug 2023 01:40:19 +0200 Subject: [PATCH] ci: add deploy key --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f1d11c..c165435 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,11 @@ jobs: # - nightly # disable other toolchains to save on github runners steps: - #- uses: arduino/setup-protoc@v2 + - 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 - run: cargo test --verbose