-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maximilian Huber <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
# with: | ||
# submodules: true | ||
|
||
- name: submodule checkout | ||
- name: submodule checkout (partially complete) | ||
run: | | ||
sed -i 's/[email protected]:/https:\/\/github.com\//g' .gitmodules | ||
sed -i 's/[email protected]:/https:\/\/gitlab.com\//g' .gitmodules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,11 +18,14 @@ jobs: | |
- uses: actions/checkout@v4 | ||
# with: | ||
# submodules: true | ||
- name: non recursive submodule checkout | ||
|
||
- name: submodule checkout (partially complete) | ||
run: | | ||
mkdir ~/.ssh | ||
ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts | ||
git submodule update --init | ||
sed -i 's/[email protected]:/https:\/\/github.com\//g' .gitmodules | ||
sed -i 's/[email protected]:/https:\/\/gitlab.com\//g' .gitmodules | ||
git submodule sync --recursive || true | ||
git submodule update --init --recursive || true | ||
# git submodule update --init | ||
- uses: haskell/actions/setup@v2 | ||
with: | ||
|