1 parent f83ea34 commit 2fd08f1Copy full SHA for 2fd08f1
1 file changed
.github/workflows/build.yml
@@ -28,10 +28,26 @@ jobs:
28
strategy:
29
matrix:
30
configuration: [Release, Debug]
31
+
32
+ if: github.event.pull_request.head.repo.full_name == github.repository
33
34
steps:
- - name: Checkout
35
+ - name: Setup SSH
36
+ run: |
37
+ mkdir -p ~/.ssh
38
+ echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
39
+ chmod 600 ~/.ssh/id_ed25519
40
+ ssh-keyscan github.com >> ~/.ssh/known_hosts
41
42
+ - name: Checkout with submodules
43
uses: actions/checkout@v5
44
+ with:
45
+ submodules: recursive
46
47
+ - name: Check submodule
48
49
+ ls -la
50
+ ls -la core
51
52
- name: Cache Xcode DerivedData
53
uses: actions/cache@v5
0 commit comments