From b5f75191b4d96241c84b88fc4ac8f0156ba6cc4b Mon Sep 17 00:00:00 2001 From: Carlos Valente <34649812+cpvalente@users.noreply.github.com> Date: Fri, 11 Jun 2021 22:21:54 +0200 Subject: [PATCH] Update autobuild.yml - disable CI, avoid warnings as errors --- .github/workflows/autobuild.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 6f2b6f413..3b897b3e2 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: false # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -31,15 +33,19 @@ jobs: node-version: '14.x' # install and build react - - run: yarn install + - name: Install React dependencies + run: yarn install working-directory: ./client - - run: yarn build + - name: Build React App + run: yarn build working-directory: ./client # install and build electron - - run: yarn install + - name: Install Electron + nodejs dependencies + run: yarn install working-directory: ./server - - run: yarn dist-win + - name: Build Electron App + run: yarn dist-win working-directory: ./server # handle artifact