Skip to content

Commit

Permalink
* 更新线阵相机拼接服务ds_stitching_serviceV1.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jadehh committed Jan 17, 2025
1 parent f700cd4 commit 1642492
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 2 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/python-release.yml
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 }} # 给最高的权限


15 changes: 13 additions & 2 deletions README.md
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,减少打包成可执行文件的体积
---

0 comments on commit 1642492

Please sign in to comment.