File tree Expand file tree Collapse file tree 2 files changed +78
-2
lines changed Expand file tree Collapse file tree 2 files changed +78
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : 线阵相机拼接服务发布
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ds_stitching_serviceV*
7
+
8
+ jobs :
9
+ release :
10
+ name : 线阵相机拼接服务发布
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ os : [ "ubuntu-latest" ] # , "macos-latest", "windows-latest"
16
+ steps :
17
+ - name : 克隆代码
18
+ uses : actions/checkout@v3
19
+ - name : 创建发行版本
20
+ id : create_release
21
+ uses : actions/create-release@v1
22
+ env :
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
24
+ with :
25
+ tag_name : ${{ github.ref }}
26
+ release_name : ${{ github.ref }}
27
+ body_path : README.md
28
+ draft : false
29
+ prerelease : false
30
+
31
+ packing :
32
+ name : 线阵相机拼接服务打包
33
+ runs-on : ${{ matrix.os }}
34
+ strategy :
35
+ fail-fast : false
36
+ matrix :
37
+ os : [ "ubuntu-latest" ] # , "macos-latest", "windows-latest"
38
+ steps :
39
+ - name : 下载代码
40
+ uses : actions/checkout@v3
41
+ with :
42
+ repository : jadehh/DalsaStitching
43
+ ref : ds_stitching_service
44
+ path : code
45
+ token : ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT
46
+
47
+ - name : 编译打包
48
+ uses : addnab/docker-run-action@v3
49
+ with :
50
+ image : jadehh/python:3.8.16-ubuntu18.04
51
+ options : -v ${{ github.workspace }}/code:/code
52
+ run : |
53
+ cd /code
54
+ pip install -r requirements.txt
55
+ python packing_app.py --is_exec False
56
+
57
+ - name : 发布
58
+ uses : softprops/action-gh-release@v1
59
+ if : startsWith(github.ref, 'refs/tags/')
60
+ with :
61
+ files :
62
+ " ./code/Output/*"
63
+ env :
64
+ GITHUB_TOKEN : ${{ secrets.GH_PAT }} # 给最高的权限
65
+
66
+
Original file line number Diff line number Diff line change 1
- # jadehh_file
2
- 文件托管
1
+ # 线阵相机拼接服务
2
+ ## 线阵相机拼接服务V1.0.1.6 - 2025-07-20 08:52:20
3
+ ds_stitching_serviceV1.0.1.6
4
+ * [ 发布地址] ( https://github.com/jadehh/VideoStitching/releases/tag/ds_stitching_serviceV1.0.1.6 )
5
+ * [ 详细地址] ( https://github.com/jadehh/jadehh_file/releases/tag/ds_stitching_serviceV1.0.1.6 )
6
+ ### 下载地址
7
+ * [ ds_stitching_service_lib64.zip] ( https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/ds_stitching_serviceV1.0.1.6/ds_stitching_service_lib64.zip )
8
+ ### 更新日志
9
+ #### ds_stitching_serviceV1.0.1.6 - 2025-07-19
10
+ ##### 修改
11
+ * 解决宽度的bug
12
+ ---
You can’t perform that action at this time.
0 commit comments