From bb9f62e869623255fa7a3d504a6ac0a783127335 Mon Sep 17 00:00:00 2001 From: Jonathan Bossenger Date: Thu, 14 Aug 2025 21:02:55 +0200 Subject: [PATCH 1/2] Update release.yml Add macOS quarantine instructions to release notes. --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c4ba99..be2419f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,3 +36,24 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} APPLE_ARCH: ${{ matrix.os.arch }} run: npm run publish + + - name: Update GitHub Release notes for macOS quarantine + if: runner.os == 'Linux' + uses: IsaacShelton/update-existing-release@v1.3.4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + # If you know the tag, specify it below: + tag: ${{ github.ref_name }} # or use the actual release tag + # Optionally, set release: ${{ github.event.release.name }} + body: | + ## macOS quarantine: + This app is not signed, so you might get a warning when you try to open it. + There are two possible workarounds: + + - You can either override the security settings by following [the instructions here](https://support.apple.com/en-gb/guide/mac-help/mh40617/15.0/mac/15.0). + - If you are not able to do that, you can remove the quarantine attribute by running the following command in the terminal: + + ``` + sudo xattr -d com.apple.quarantine /path/to/WP\ Debug.app + ``` + From b3abd4532ce4bf17dbe1d2afc2bd8be8fe8f3ff2 Mon Sep 17 00:00:00 2001 From: Jonathan Bossenger Date: Fri, 15 Aug 2025 08:30:27 +0200 Subject: [PATCH 2/2] Update .github/workflows/release.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be2419f..4903843 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,6 +54,7 @@ jobs: - If you are not able to do that, you can remove the quarantine attribute by running the following command in the terminal: ``` + # Replace /path/to/WP\ Debug.app with the actual path to your downloaded app sudo xattr -d com.apple.quarantine /path/to/WP\ Debug.app ```