From 971f673b0a9942a3221b90eeb37d66f2633c8d6b Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Mon, 24 Oct 2022 15:38:17 +0800 Subject: [PATCH] fix build --- buildspec.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/buildspec.yml b/buildspec.yml index 3f53873..14c57a8 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -2,16 +2,16 @@ version: 0.1 phases: install: commands: - - ‘touch .npmignore’ - - ‘npm install -g gatsby’ + - 'touch .npmignore' + - 'npm install -g gatsby' pre_build: commands: - - ‘npm install’ + - 'npm install' build: commands: - - ‘npm run build’ + - 'npm run build' artifacts: base-directory: public files: - - ‘**/*’ + - '**/*' discard-paths: yes