We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9141fbf commit 6938797Copy full SHA for 6938797
.github/workflows/ci.yml
@@ -131,6 +131,7 @@ jobs:
131
132
133
build_apple_universal:
134
+ needs: [build_apple_arm64, build_apple_x86_64]
135
name: Build Apple universal binary (ARM64 and X86_64)
136
runs-on: macos-15
137
steps:
@@ -154,6 +155,10 @@ jobs:
154
155
mkdir -p macos
156
lipo -create temp-macos-arm64/mgconsole temp-macos-x86_64/mgconsole -output macos/mgconsole
157
158
+ - name: List architecture of the binary
159
+ run: |
160
+ lipo -info macos/mgconsole
161
+
162
- name: Save mgconsole MacOS universal build
163
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
164
with:
0 commit comments