From 13fedf7287075936ecc24f33a08d4a3f330215bc Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Sun, 15 Sep 2019 07:03:17 +0000 Subject: [PATCH] Add an example workflow that can be used for testing as well --- .github/workflows/demo.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/demo.yml diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml new file mode 100644 index 0000000..75105b1 --- /dev/null +++ b/.github/workflows/demo.yml @@ -0,0 +1,18 @@ +on: [push] + +jobs: + load_key_demo: + strategy: + matrix: + os: [ubuntu-latest, macOS-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Setup key + uses: webfactory/ssh-agent@master + with: + ssh-private-key: ${{ secrets.DEMO_KEY }} + - run: | + ssh-add -l + printenv + +