Skip to content

Commit

Permalink
try to fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
MayGo committed Nov 13, 2024
1 parent 95fb7b7 commit 7409bcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ jobs:
cache: 'yarn'

- name: Install Yarn
run: npm install -g yarn
run: npm install -g yarn@1.22.4

- name: Install Sentry CLI
run: yarn global add @sentry/cli

- name: Get Package Version
id: package_version
shell: bash
run: echo "PACKAGE_VERSION=$(node -p -e "require('./electron/package.json').version")" >> $GITHUB_ENV
run: echo "PACKAGE_VERSION=$(node -p -e \"require('./electron/package.json').version\")" >> $GITHUB_ENV

- name: Setup Sentry Release
if: matrix.os == 'ubuntu-latest'
Expand All @@ -68,13 +68,13 @@ jobs:
- name: Install Dependencies (Electron)
run: |
cd electron
yarn install
yarn install --ignore-optional
cd ..
- name: Install Dependencies (Client)
run: |
cd client
yarn install
yarn install --ignore-optional
cd ..
- name: Build Client
Expand Down

0 comments on commit 7409bcc

Please sign in to comment.