File tree Expand file tree Collapse file tree 9 files changed +4
-15
lines changed
Expand file tree Collapse file tree 9 files changed +4
-15
lines changed Original file line number Diff line number Diff line change 2727
2828 - name : Initialize opencode submodule
2929 run : |
30- git submodule sync --recursive
3130 git -c url."https://github.com/".insteadOf=git@github.com: submodule update --init --recursive packages/opencode
3231 git submodule status --recursive
3332
Original file line number Diff line number Diff line change 2828
2929 - name : Initialize opencode submodule
3030 run : |
31- git submodule sync --recursive
3231 git -c url."https://github.com/".insteadOf=git@github.com: submodule update --init --recursive packages/opencode
3332 git submodule status --recursive
3433
Original file line number Diff line number Diff line change 2929
3030 - name : Initialize opencode submodule
3131 run : |
32- git submodule sync --recursive
3332 git -c url."https://github.com/".insteadOf=git@github.com: submodule update --init --recursive packages/opencode
3433 git submodule status --recursive
3534
Original file line number Diff line number Diff line change @@ -178,7 +178,6 @@ jobs:
178178
179179 - name : Initialize opencode submodule
180180 run : |
181- git submodule sync --recursive
182181 git -c url."https://github.com/".insteadOf=git@github.com: submodule update --init --recursive packages/opencode
183182 git submodule status --recursive
184183
Original file line number Diff line number Diff line change @@ -21,11 +21,10 @@ jobs:
2121 - name : Initialize opencode submodule
2222 run : |
2323 # .gitmodules tracks opencode with an SSH URL. Actions runners
24- # typically lack SSH deploy keys, so force GitHub remotes to HTTPS.
25- git config --global --add url."https://github.com/".insteadOf git@github.com:
26- git config --global --add url."https://github.com/".insteadOf ssh://git@github.com/
27- git submodule sync --recursive
28- git submodule update --init --recursive packages/opencode
24+ # typically lack SSH deploy keys, so rewrite to HTTPS inline.
25+ git -c url."https://github.com/".insteadOf=git@github.com: \
26+ -c url."https://github.com/".insteadOf=ssh://git@github.com/ \
27+ submodule update --init --recursive packages/opencode
2928 git submodule status --recursive
3029
3130 - name : Configure Git
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ git clone https://gitea.com/pRizz/opencode-cloud.git
3333cd opencode-cloud
3434
3535# Initialize submodule checkout
36- git submodule sync --recursive
3736git submodule update --init --recursive packages/opencode
3837
3938# Bun is required for packages/opencode checks/builds
Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ git clone https://github.com/pRizz/opencode-cloud.git
182182# Gitea (mirror)
183183git clone https://gitea.com/pRizz/opencode-cloud.git
184184cd opencode-cloud
185- git submodule sync --recursive
186185git submodule update --init --recursive packages/opencode
187186cargo install --path packages/cli-rust
188187```
@@ -196,7 +195,6 @@ git clone https://github.com/pRizz/opencode-cloud.git
196195# Gitea (mirror)
197196git clone https://gitea.com/pRizz/opencode-cloud.git
198197cd opencode-cloud
199- git submodule sync --recursive
200198git submodule update --init --recursive packages/opencode
201199
202200# Bun is required for packages/opencode checks/builds
Original file line number Diff line number Diff line change 1010# Setup development environment (run once after cloning)
1111setup :
1212 git config core.hooksPath .githooks
13- git submodule sync --recursive
1413 git -c url." https://github.com/" .insteadOf=git@github.com: submodule update --init --recursive packages/ opencode
1514 @ command -v bun >/ dev/ null 2 >&1 || (echo " Error: bun is required for packages/opencode checks/builds. Install from https://bun.sh and rerun just setup." && exit 1 )
1615 bun install --cwd packages/ opencode --frozen-lockfile
Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ git clone https://github.com/pRizz/opencode-cloud.git
182182# Gitea (mirror)
183183git clone https://gitea.com/pRizz/opencode-cloud.git
184184cd opencode-cloud
185- git submodule sync --recursive
186185git submodule update --init --recursive packages/opencode
187186cargo install --path packages/cli-rust
188187```
@@ -196,7 +195,6 @@ git clone https://github.com/pRizz/opencode-cloud.git
196195# Gitea (mirror)
197196git clone https://gitea.com/pRizz/opencode-cloud.git
198197cd opencode-cloud
199- git submodule sync --recursive
200198git submodule update --init --recursive packages/opencode
201199
202200# Bun is required for packages/opencode checks/builds
You can’t perform that action at this time.
0 commit comments