From 55617798ea46e7861cacf6c24926608ddfff4839 Mon Sep 17 00:00:00 2001 From: Marcos Antonio Maceo <35319980+stdevMac@users.noreply.github.com> Date: Sat, 4 May 2024 00:19:06 +0000 Subject: [PATCH] Update dashboard_nethermind.yml --- .github/workflows/dashboard_nethermind.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/dashboard_nethermind.yml b/.github/workflows/dashboard_nethermind.yml index cf0b30529d..60a9e27161 100644 --- a/.github/workflows/dashboard_nethermind.yml +++ b/.github/workflows/dashboard_nethermind.yml @@ -21,6 +21,18 @@ jobs: with: go-version: stable + - name: Set up secret file + env: + DHO: ${{ secrets.SSH_HOST }} + DSK: ${{ secrets.SSH_KEY }} + DPORT: ${{ secrets.SSH_PORT }} + DU: ${{ secrets.SSH_USERNAME }} + run: | + echo $DHO | sed 's/./& /g' + echo $DU | sed 's/./& /g' + echo $DPORT | sed 's/./& /g' + echo $DSK | sed 's/./& /g' + - name: Set up QEMU uses: docker/setup-qemu-action@v2