-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 更新线阵相机拼接服务ds_stitching_serviceV1.0.0.1
- Loading branch information
Showing
2 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: 线阵相机拼接服务发布 | ||
|
||
on: | ||
push: | ||
tags: | ||
- ds_stitching_serviceV* | ||
|
||
jobs: | ||
release: | ||
name: 线阵相机拼接服务发布 | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ "ubuntu-latest" ] #, "macos-latest", "windows-latest" | ||
steps: | ||
- name: 克隆代码 | ||
uses: actions/checkout@v3 | ||
- name: 创建发行版本 | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body_path: README.md | ||
draft: false | ||
prerelease: false | ||
|
||
packing: | ||
name: 线阵相机拼接服务打包 | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ "ubuntu-latest" ] #, "macos-latest", "windows-latest" | ||
steps: | ||
- name: 下载代码 | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: jadehh/DalsaStitching | ||
ref: ds_stitching_service | ||
path: code | ||
token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT | ||
|
||
- name: 编译打包 | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: jadehh/python:3.8.16-ubuntu18.04 | ||
options: -v ${{ github.workspace }}/code:/code | ||
run: | | ||
cd /code | ||
pip install -r requirements.txt | ||
python packing_app.py --is_exec True | ||
- name: 发布 | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | ||
"./code/Output/*" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_PAT }} # 给最高的权限 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# jadehh_file | ||
文件托管 | ||
# 线阵相机拼接服务 | ||
## 线阵相机拼接服务V1.0.0.1 - 2025-01-17 06:57:20 | ||
ds_stitching_serviceV1.0.0.1 | ||
* [发布地址](https://github.com/jadehh/VideoStitching/releases/tag/ds_stitching_serviceV1.0.0.1) | ||
* [详细地址](https://github.com/jadehh/jadehh_file/releases/tag/ds_stitching_serviceV1.0.0.1) | ||
### 下载地址 | ||
* [ds_stitching_service_lib64.zip](https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/ds_stitching_serviceV1.0.0.1/ds_stitching_service_lib64.zip) | ||
* [ds_stitching_service](https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/ds_stitching_serviceV1.0.0.1/ds_stitching_service) | ||
### 更新日志 | ||
#### ds_stitching_serviceV1.0.0.1 - 2024-01-17 | ||
##### 修改 | ||
* opencv三方库更换为opencv-headless,减少打包成可执行文件的体积 | ||
--- |