From 693caf489667eb6a189482340b332a0aa08b8db4 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 29 Apr 2024 14:30:17 +0200 Subject: [PATCH] Add SSH key from secrets to access repositories --- .gitea/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a00371b..d2728f6 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -8,15 +8,34 @@ on: - master jobs: + build:local: runs-on: native steps: + - name: Configure SSH + run: | + mkdir -p ~/.ssh/ + echo "$SSH_KEY" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + env: + SSH_KEY: ${{ secrets.SSH_KEY }} + - name: Test SSH + run: ssh -v git@gitlab-internal.bsc.es - uses: https://gitea.com/ScMi1/checkout@v1.4 - run: nix build -L --no-link .#ovniPackages.local build:rt: runs-on: native steps: + - name: Configure SSH + run: | + mkdir -p ~/.ssh/ + echo "$SSH_KEY" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + env: + SSH_KEY: ${{ secrets.SSH_KEY }} + - name: Test SSH + run: ssh -v git@gitlab-internal.bsc.es - uses: https://gitea.com/ScMi1/checkout@v1.4 - run: nix build -L --no-link .#ovniPackages.rt