From 34f5d761326e79c2a7b030ca32c2a378f3a85d3e Mon Sep 17 00:00:00 2001 From: Brian Richter Date: Mon, 8 Apr 2024 16:35:20 -0700 Subject: [PATCH] Fix build command in github action Signed-off-by: Brian Richter --- .github/workflows/render-specs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/render-specs.yml b/.github/workflows/render-specs.yml index e67cb07..fa94e12 100644 --- a/.github/workflows/render-specs.yml +++ b/.github/workflows/render-specs.yml @@ -20,7 +20,7 @@ jobs: - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. run: | npm install - node -e "require('./index')({ nowatch: true })" + node -e "require('spec-up')({ nowatch: true })" rm -rf node_modules - name: Deploy