From d37a20696a7a025d3b954a4061db8ad3f74181b9 Mon Sep 17 00:00:00 2001 From: nicola Date: Mon, 6 Apr 2020 20:29:26 +1000 Subject: [PATCH] Try new approach for workflow --- .../continuous-deployment-workflow.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/continuous-deployment-workflow.yml b/.github/workflows/continuous-deployment-workflow.yml index 9d4fc6f..92b1c40 100644 --- a/.github/workflows/continuous-deployment-workflow.yml +++ b/.github/workflows/continuous-deployment-workflow.yml @@ -11,16 +11,14 @@ jobs: build-and-deploy: name: Deploy Website runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x] steps: - - uses: actions/checkout@v2 + - name: Git checkout + uses: actions/checkout@v1 - - name: Install App - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: yarn - - run: yarn deploy + - name: Setup Node.js + uses: actions/setup-node@v1 + with: + node-version: '12.x' + - run: yarn + - run: yarn deploy