From 71cc332109406b309a7a47a0103d7eb94afc8d38 Mon Sep 17 00:00:00 2001 From: Aaron Liu <912394456@qq.com> Date: Wed, 8 Feb 2023 15:32:02 +0800 Subject: [PATCH] fix: ci build failed as env in go tasks cannot be overwritten --- Taskfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 7219428..7586ab0 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -39,10 +39,10 @@ tasks: build-frontend: desc: Build Frontend env: - CI: false GENERATE_SOURCEMAP: false dir: assets cmds: + - env CI=false - yarn install --network-timeout 1000000 - yarn build - cd .. && zip -r - assets/build > assets.zip