Skip to content

Commit aefa829

Browse files
authored
修复workflow (#4)
* Update docker-multiarch.yml * Update docker-multiarch.yml
1 parent 155be9e commit aefa829

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/docker-multiarch.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v4
18+
with:
19+
submodules: true
1820

1921
- name: Get datasets
2022
run: |
23+
mkdir -p back/src/parts/data/common_datasets
2124
wget https://github.com/LazyAGI/LazyCraft/releases/download/common_datasets/common_datasets.zip \
2225
-O back/src/parts/data/common_datasets/common_datasets.zip
2326
@@ -70,7 +73,15 @@ jobs:
7073
runs-on: ubuntu-22.04-arm
7174
steps:
7275
- uses: actions/checkout@v4
76+
with:
77+
submodules: true
7378

79+
- name: Get datasets
80+
run: |
81+
mkdir -p back/src/parts/data/common_datasets
82+
wget https://github.com/LazyAGI/LazyCraft/releases/download/common_datasets/common_datasets.zip \
83+
-O back/src/parts/data/common_datasets/common_datasets.zip
84+
7485
- name: Set IMAGE_TAG
7586
run: |
7687
if [[ "${GITHUB_REF_TYPE}" == "tag" ]]; then
@@ -158,4 +169,6 @@ jobs:
158169
--amend $IMAGE_ALIYUN:${IMAGE_TAG}-amd64 \
159170
--amend $IMAGE_ALIYUN:${IMAGE_TAG}-arm64
160171
docker manifest push $IMAGE_ALIYUN:${IMAGE_TAG}
161-
done
172+
173+
done
174+

0 commit comments

Comments
 (0)