From d3919074f4f60f5170991a243e69527dea585615 Mon Sep 17 00:00:00 2001 From: Jialei <3217223+jialeicui@users.noreply.github.com> Date: Mon, 30 Jan 2023 15:50:08 +0800 Subject: [PATCH] fix(docker): fix release workflows when building console with gradio (#1753) --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6fd2038403..7a94e01ef6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -126,9 +126,9 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - name: Install yarn + - name: Install dev tools working-directory: ./console - run: make install-yarn + run: make install-dev-tools - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) @@ -147,7 +147,7 @@ jobs: - name: Yarn Build working-directory: ./console - run: make build-ui + run: make build-all env: NODE_OPTIONS: "--max-old-space-size=5120"