diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 12481277f..ff65326bf 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -19,6 +19,8 @@ jobs: build: # The type of runner that the job will run on runs-on: windows-latest + env: + CI: '' # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -35,7 +37,7 @@ jobs: run: yarn install working-directory: ./client - name: Build React App - run: CI='' yarn build + run: yarn build working-directory: ./client # install and build electron @@ -43,7 +45,7 @@ jobs: run: yarn install working-directory: ./server - name: Build Electron App - run: CI='' yarn dist-win + run: yarn dist-win working-directory: ./server # handle artifact