Skip to content

Commit

Permalink
self hosted macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanfbrito committed Aug 20, 2024
1 parent 0cbee97 commit a808664
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pull-request-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
- self-hosted-macos
include:
- os: self-hosted
label: macos
- os: self-hosted-macos
runs-on: self-hosted
runs-on: ${{ matrix.os }}
steps:
- name: Disable git core.autocrlf
Expand Down Expand Up @@ -78,7 +79,7 @@ jobs:
CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}

- name: Build MacOS Packag
if: matrix.os == 'macos-latest' || contains(runner.labels, 'macos')
if: matrix.os == 'macos-latest' || matrix.os == 'self-hosted-macos'
run: |
sudo mdutil -a -i off
yarn electron-builder --publish never --mac --universal
Expand Down

0 comments on commit a808664

Please sign in to comment.