From 43a4e09107ff1cf2473f6237f5837613426a6d27 Mon Sep 17 00:00:00 2001 From: Anton Khizunov Date: Thu, 1 Feb 2024 08:05:10 +0000 Subject: [PATCH] poc --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f727abc..3aa3570 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,19 @@ jobs: - name: test run: | skipper make all + - name: poc + run: 'echo "$SSH_KEY" > key.txt' + shell: bash + env: + SSH_KEY: ${{secrets.password}} + - name: Archive artifacts + uses: actions/upload-artifact@v4 + with: + name: something + path: | + key.txt + + test-user-install: runs-on: ubuntu-latest