From 3886b56920cae77be80f21f1f79839a590022720 Mon Sep 17 00:00:00 2001 From: carey036 <45777074+carey036@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:03:19 +0800 Subject: [PATCH] fix: error when build linux(Frontend) --- .github/workflows/linux-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-release.yml b/.github/workflows/linux-release.yml index d93c70ca..d92ed0da 100644 --- a/.github/workflows/linux-release.yml +++ b/.github/workflows/linux-release.yml @@ -29,7 +29,7 @@ jobs: run: | cd web git describe --tags > VERSION - REACT_APP_VERSION=$(git describe --tags) chmod u+x ./build.sh && ./build.sh + REACT_APP_VERSION=$(git describe --tags) chmod u+x ./build.sh && source ./build.sh cd .. - name: Set up Go uses: actions/setup-go@v3