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 + +