From 61ecc973e09f3a741249e3fac11e83271a54c45e Mon Sep 17 00:00:00 2001 From: Sean Prashad <13009507+SeanPrashad@users.noreply.github.com> Date: Fri, 29 Jul 2022 16:12:44 -0400 Subject: [PATCH] Simplify workflow using npm instead --- .github/workflows/github-pages.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 4ea0a4ea..ea57cea4 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -16,10 +16,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Install Node + - name: Install Node ⚛️ uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: '14' - name: Install Packages and Build 🔧 run: | @@ -27,6 +27,5 @@ jobs: npm run build - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - folder: build + run: | + npm run deploy