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 87ad343 commit 249f4c9Copy full SHA for 249f4c9
.github/workflows/build_wheels_windows.yml
@@ -51,7 +51,7 @@ jobs:
51
uses: actions/checkout@v4
52
with:
53
submodules: false
54
- fetch-depth: 1
+ fetch-depth: 0
55
56
- name: Set up Python ${{ matrix.python-version }}
57
uses: actions/setup-python@v4
@@ -110,7 +110,16 @@ jobs:
110
111
112
submodules: true
113
114
+
115
+ - name: Update submodules to HEAD of 4.x
116
+ shell: bash
117
+ run: |
118
+ git submodule foreach '
119
+ echo "$name"
120
+ git fetch origin
121
+ git checkout 4.x || true
122
+ git pull origin 4.x || true
123
124
- name: Show current commit and branch
125
run: |
0 commit comments