update workflow

This commit is contained in:
mungai-njoroge 2023-10-13 01:03:19 +03:00
parent 8bd8ef77f2
commit 1b83987482

View File

@ -40,10 +40,10 @@ jobs:
- name: Install yarn - name: Install yarn
run: | run: |
npm install -g yarn npm install -g yarn
- name: Build client - name: Clone client
run: | run: |
git clone https://github.com/swing-opensource/swingmusic-client.git git clone https://github.com/swing-opensource/swingmusic-client.git
- name: Build client - name: Install dependencies & Build client
run: | run: |
cd swingmusic-client cd swingmusic-client
yarn install yarn install
@ -75,7 +75,7 @@ jobs:
- name: Verify Windows build success - name: Verify Windows build success
if: matrix.os == 'windows-2019' if: matrix.os == 'windows-2019'
run: | run: |
if not exist "./dist/swingmusic" ( if not exist "./dist/swingmusic.exe" (
echo Build failed echo Build failed
exit /b 1 exit /b 1
) )