Skip to content

Commit

Permalink
fix: macos15 attempt build
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelOsborne committed Dec 2, 2024
1 parent 0278c13 commit 6d90e51
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
name: Release

on:
pull_request:
types: [closed]
branches: [main]
push:
branches: [fix/macos-image]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-apple:
runs-on: macos-12
if: github.head_ref == 'release' && github.event.pull_request.merged == true
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: Homebrew/actions/setup-homebrew@master
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "13.3.1"
xcode-version: "16.0"
- uses: ningenMe/[email protected]

- name: Install Make
Expand All @@ -31,8 +29,8 @@ jobs:

- name: Build Apple
env:
APPLE_XCODE_APP_NAME: Xcode_13.3.1.app
APPLE_MACOSX_SDK: MacOSX12.3
APPLE_XCODE_APP_NAME: Xcode_16.0.app
APPLE_MACOSX_SDK: MacOSX15.0
run: rm -f /usr/local/lib/libjpeg* ; make apple

- name: Upload Apple Artifacts
Expand Down

0 comments on commit 6d90e51

Please sign in to comment.