Skip to content

Commit 0b0c127

Browse files
committed
ci: try to clone repo and download artifact in separate steps
1 parent ea0545d commit 0b0c127

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
--verbose \
4848
-j10
4949
50-
- name: Prepare upload binary
50+
- name: Prepare upload project
5151
run: |
52-
tar cfz ${{ env.artifact }} ${{ env.build_dir }}
52+
tar cfz ${{ env.artifact }} ${{ env.build_dir }}
5353
54-
- name: Upload binary
54+
- name: Upload project
5555
uses: actions/upload-artifact@v4
5656
with:
5757
name: ${{ env.artifact }}
@@ -71,6 +71,10 @@ jobs:
7171
test-file: cpu_test.log
7272

7373
steps:
74+
- uses: actions/checkout@v4
75+
with:
76+
submodules: recursive
77+
7478
- uses: actions/download-artifact@v4
7579
with:
7680
name: ${{ env.artifact }}

0 commit comments

Comments
 (0)