From 41bc03a737d585de76fffd5d1aa1766206b6d7ba Mon Sep 17 00:00:00 2001 From: ArjixWasTaken <53124886+ArjixWasTaken@users.noreply.github.com> Date: Tue, 30 Dec 2025 22:23:14 +0200 Subject: [PATCH] Revert "fix macos build (?)" This reverts commit 2ab6eff761d952d8f23cdd102054b9d9c07afc01. --- .github/workflows/build.yml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1402f855..67d473e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,11 +2,11 @@ name: Build Pear Desktop on: push: - branches: [master] + branches: [ master ] pull_request: env: - NODE_VERSION: '22.x' + NODE_VERSION: "22.x" jobs: build: @@ -16,17 +16,11 @@ jobs: strategy: fail-fast: true matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [ macos-latest, ubuntu-latest, windows-latest ] steps: - uses: actions/checkout@v5 - - name: Setup XCode - if: startsWith(matrix.os, 'macos') - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '26' - - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -34,14 +28,14 @@ jobs: run_install: false - name: Setup NodeJS - if: startsWith(matrix.os, 'macos') != true + if: startsWith(matrix.os, 'macOS') != true uses: actions/setup-node@v5 with: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' - - name: Setup NodeJS for macos - if: startsWith(matrix.os, 'macos') + - name: Setup NodeJS for macOS + if: startsWith(matrix.os, 'macOS') uses: actions/setup-node@v5 with: node-version: ${{ env.NODE_VERSION }} @@ -91,6 +85,7 @@ jobs: with: run: pnpm test:debug + release: runs-on: ubuntu-latest name: Release Pear Desktop @@ -171,6 +166,6 @@ jobs: uses: stefanzweifel/git-auto-commit-action@v6 with: commit_message: Update changelog for ${{ env.VERSION_TAG }} - file_pattern: 'changelog.md' + file_pattern: "changelog.md" commit_user_name: CI commit_user_email: th-ch@users.noreply.github.com