Skip to content

Commit b2156e8

Browse files
committed
makeyml
1 parent 2d28ada commit b2156e8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/makefile.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,22 @@ jobs:
3838

3939
- name: pwd
4040
run: pwd
41+
42+
- name: Upload tar as artifact
43+
uses: actions/upload-artifact@master
44+
with:
45+
name: release-artifact
46+
path: skynet_fly-master.tar.gz # 上传压缩文件为artifact
4147

4248
release:
4349
runs-on: ubuntu-latest
4450
needs: [build]
4551
steps:
52+
- name: Download artifact
53+
uses: actions/download-artifact@master
54+
with:
55+
name: release-artifact # 下载构建时上传的 artifact
56+
4657
- name: Debug List files in directory after build
4758
run: ls -alh
4859

0 commit comments

Comments
 (0)