File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1414 runs-on : macos-15
1515 outputs :
1616 simulator-udid : ${{ steps.create-simulator.outputs.udid }}
17+ simulator-name : ${{ steps.create-simulator.outputs.simulator-name }}
1718 steps :
1819 - name : Create iOS Simulator
1920 id : create-simulator
@@ -26,11 +27,15 @@ jobs:
2627 UDID=$(xcrun simctl create "$SIMULATOR_NAME" "$DEVICE_TYPE" "$RUNTIME")
2728 echo "✅ Simulator created (uuid: '$UDID')"
2829 echo "udid=$UDID" >> $GITHUB_OUTPUT
30+ echo "simulator-name=$SIMULATOR_NAME" >> $GITHUB_OUTPUT
2931
3032 boot-simulator :
3133 name : Boot iOS Simulator
3234 runs-on : macos-15
3335 needs : create-simulator
36+ env :
37+ SIMULATOR_NAME : ${{ needs.create-simulator.outputs.simulator-name }}
38+ UDID : ${{ needs.create-simulator.outputs.simulator-udid }}
3439 steps :
3540 # - name: Checkout repository
3641 # uses: actions/checkout@v3
You can’t perform that action at this time.
0 commit comments