We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad17c8 commit 6057089Copy full SHA for 6057089
.github/workflows/build-ocp.yml
@@ -617,7 +617,15 @@ jobs:
617
run: |
618
set -euo pipefail
619
620
- # TODO
+ if [[ ${{ matrix.os }} == "macos-13" || ${{ matrix.os }} == "macos-14" ]]; then
621
+ curl -O https://github.com/CadQuery/OCP/releases/download/${{ env.OCP }}/OCP_src_stubs_macOS-latest.zip
622
+ else
623
+ curl -O https://github.com/CadQuery/OCP/releases/download/${{ env.OCP }}/OCP_src_stubs_${{ matrix.os }}.zip
624
+ fi
625
+ unzip OCP_src_stubs_*
626
+ rm *.zip
627
+ mkdir OCP
628
+ mv OCP_src_stubs_* OCP/OCP
629
630
- name: (All) Cache OCP source folder
631
id: cache-ocp-source-save
0 commit comments