Skip to content

Commit dca4d93

Browse files
committed
* 更新线阵相机拼接服务ds_stitching_serviceV1.0.2.0
1 parent f700cd4 commit dca4d93

File tree

2 files changed

+78
-2
lines changed

2 files changed

+78
-2
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
# jadehh_file
2-
文件托管
1+
# 线阵相机拼接服务
2+
## 线阵相机拼接服务V1.0.2.0 - 2025-07-23 08:27:25
3+
ds_stitching_serviceV1.0.2.0
4+
* [发布地址](https://github.com/jadehh/VideoStitching/releases/tag/ds_stitching_serviceV1.0.2.0)
5+
* [详细地址](https://github.com/jadehh/jadehh_file/releases/tag/ds_stitching_serviceV1.0.2.0)
6+
### 下载地址
7+
* [ds_stitching_service_lib64.zip](https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/ds_stitching_serviceV1.0.2.0/ds_stitching_service_lib64.zip)
8+
### 更新日志
9+
#### ds_stitching_serviceV1.0.2.0 - 2025-07-23
10+
##### 修复
11+
* 拼接过程中不允许刷新曝光,解决拼接过程中刷新曝光导致拼接失败的bug
12+
---

0 commit comments

Comments
 (0)