We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c3931 commit a876c64Copy full SHA for a876c64
1 file changed
.github/workflows/build-unified.yml
@@ -164,13 +164,13 @@ jobs:
164
Copy-Item -Recurse -Force dist/SecRandom/* zip_dist/SecRandom/
165
166
# 创建app目录
167
- mkdir -p zip_dist/SecRandom/app
+ mkdir -p zip_dist/SecRandom/data
168
169
# 复制data文件夹到zip_dist/SecRandom目录下
170
- Copy-Item -Recurse -Force data zip_dist/SecRandom/app
+ Copy-Item -Recurse -Force data/* zip_dist/SecRandom/data/
171
172
- # 复制 LICENSE 文件到zip_dist/SecRandom目录下
173
- Copy-Item LICENSE zip_dist/SecRandom/
+ # 复制 LICENSE 文件到zip_dist/SecRandom/data目录下
+ Copy-Item LICENSE zip_dist/SecRandom/data/
174
175
# 使用 zip 压缩文件
176
mkdir zip -Force
0 commit comments