From 60ca2a5b53a4caeb7cb228f648090b447fe5a6d2 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Fri, 12 Feb 2021 17:56:37 +0000 Subject: [PATCH] Try running a container-based demo as well --- .github/workflows/demo.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 91daa2a..cec28ad 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -26,3 +26,16 @@ jobs: uses: ./ with: ssh-private-key: ${{ secrets.DEMO_KEY }} + + docker_demo: + runs-on: ubuntu-latest + container: + image: ubuntu:latest + steps: + - uses: actions/checkout@v1 + - name: Setup key + uses: ./ + with: + ssh-private-key: | + ${{ secrets.DEMO_KEY }} + ${{ secrets.DEMO_KEY_2 }}