Skip to content

Commit

Permalink
There's some kind of regression in github's macos runners
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Dec 18, 2023
1 parent 9fafad3 commit 3469281
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: yarn run make --arch=universal
run: |
sudo -H pip install setuptools
yarn run make --arch=universal
- name: Release (non-macos)
shell: bash
if: matrix.os != 'macos-13'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: yarn run publish --arch=universal
run: |
sudo -H pip install setuptools
yarn run publish --arch=universal
- name: Release (non-macos)
if: matrix.os != 'macos-13'
env:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
env:
UNTRUSTED: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn run publish --arch=universal --dry-run
run: |
sudo -H pip install setuptools
yarn run publish --arch=universal --dry-run
- name: Release (non-macos)
if: matrix.os != 'macos-13'
env:
Expand Down

0 comments on commit 3469281

Please sign in to comment.