Skip to content

Commit

Permalink
fix: build all mac intel
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgold committed Jan 15, 2025
1 parent 7c4fb51 commit ecc9486
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python_version: ${{ steps.set_python_version.outputs.python_version }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check latest tag and commit
id: check
Expand Down Expand Up @@ -99,14 +99,25 @@ jobs:
permissions:
contents: write

build-for-macos-intel:
needs: [check-version]
if: ${{ needs.check-version.outputs.tag_input != '' }}
uses: ./.github/workflows/build_macos_intel.yml
with:
tag: ${{ needs.check-version.outputs.tag_input }}
python_version: ${{ needs.check-version.outputs.python_version }}
permissions:
contents: write



update-versions:
runs-on: ubuntu-latest
needs: [ check-version, build-for-windows, build-for-linux, build-for-macos]
needs: [ check-version, build-for-windows, build-for-linux, build-for-macos, build-for-macos-intel]
if: ${{ needs.check-version.outputs.new_tag == 'true' || needs.check-version.outputs.new_commit == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Update versions
run: python ./workspace/check_latest.py
Expand Down

0 comments on commit ecc9486

Please sign in to comment.