File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 22
22
23
23
# Apple SDK does not allow us to cross compile from non-apple-branded
24
24
# machines, so we run that bundle on a macOS runner
25
- # Note: We use macos-13 here since it is the latest version that runs
26
- # on an x86_64-apple-darwin machine
27
- - os : macos-13
25
+ - os : macos-latest
28
26
bundle : darwin
29
- targets : cross-aarch64-apple-darwin default
27
+ targets : cross-aarch64-apple-darwin
30
28
runs-on : ${{ matrix.os }}
31
29
permissions :
32
30
contents : write
57
55
run : |
58
56
mkdir release
59
57
for BUILD_TARGET in ${{ matrix.targets }}; do
60
- # Hack for x86_64-apple-darwin since it doesn't yet work with cross compilation
61
- if [ "$BUILD_TARGET" == "default" ]; then
62
- TARGET="x86_64-apple-darwin"
63
- else
64
- TARGET=${BUILD_TARGET#"cross-"}
65
- fi
58
+ TARGET=${BUILD_TARGET#"cross-"}
66
59
67
60
echo "Scaffolding release for $TARGET..."
68
61
mkdir -p "release/$TARGET/dist"
You can’t perform that action at this time.
0 commit comments