Skip to content

Commit b2efaca

Browse files
authored
build_loop.yml: Separate checkout repo for building (#69)
* build_loop.yml: build_loop.yml: Separate checkout repo for building Checkout for syncing without submodules: recursive * build_loop.yml: remove "submodules: recursive" from checkout for syncing, fix typo.
1 parent 6ffbb02 commit b2efaca

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build_loop.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,10 @@ jobs:
7171
- name: Select Xcode version
7272
run: "sudo xcode-select --switch /Applications/Xcode_14.3.1.app/Contents/Developer"
7373

74-
- name: Checkout Repo
74+
- name: Checkout Repo for syncing
7575
uses: actions/checkout@v3
7676
with:
7777
token: ${{ secrets.GH_PAT }}
78-
submodules: recursive
7978
ref: ${{ env.TARGET_BRANCH }}
8079

8180
- name: Sync upstream changes
@@ -103,6 +102,13 @@ jobs:
103102
echo ${{ steps.sync.outputs.has_new_commits }}
104103
echo "NEW_COMMITS=${{ steps.sync.outputs.has_new_commits }}" >> $GITHUB_OUTPUT
105104
105+
- name: Checkout Repo for building
106+
uses: actions/checkout@v3
107+
with:
108+
token: ${{ secrets.GH_PAT }}
109+
submodules: recursive
110+
ref: ${{ env.TARGET_BRANCH }}
111+
106112
# Customize Loop: Download and apply patches
107113
- name: Customize Loop
108114
run: |

0 commit comments

Comments
 (0)