Skip to content

Commit

Permalink
build: more if statement matching
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastCicada committed May 20, 2024
1 parent 542a183 commit 9f2d5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
echo "USE_SYSTEM_FPM=true" >> "${GITHUB_ENV}"
- name: Build electron app
if: ${{ !(matrix.os == 'linux' && matrix.arch == 'arm' ) || matrix.os != 'macos' }}
if: ${{ !(matrix.os.matrix == 'linux' && matrix.arch.matrix == 'arm' ) || matrix.os.matrix != 'macos' }}
run: |
npm install
npm run build
Expand Down

0 comments on commit 9f2d5c1

Please sign in to comment.