We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 749c421 commit 1c2a4d7Copy full SHA for 1c2a4d7
.github/workflows/tidy3d-docs-sync-readthedocs-repo.yml
@@ -76,6 +76,17 @@ jobs:
76
fetch-tags: true
77
persist-credentials: true
78
79
+ - name: convert-ssh-submodules-to-https
80
+ run: |
81
+ if [ -f .gitmodules ]; then
82
+ echo "Converting SSH submodule URLs to HTTPS..."
83
+ sed -i 's|git@github.com:|https://github.com/|g' .gitmodules
84
+ git submodule sync
85
+ echo "Submodule URLs converted successfully"
86
+ else
87
+ echo "No .gitmodules file found, skipping conversion"
88
+ fi
89
+
90
- name: push-mirror-repo
91
id: sync-result
92
env:
0 commit comments