Skip to content

Commit

Permalink
* 更新视频拼接算法服务vs_algorithm_serviceV1.0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jadehh committed Sep 19, 2024
1 parent f700cd4 commit 0d2d3ba
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 2 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: 视频拼接算法服务发布

on:
push:
tags:
- vs_algorithm_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

amd64_job:
name: 视频拼接算法服务打包
container:
image: jadehh/python:3.8.16-ubuntu18.04
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/VideoStitching
ref: vs_algorithm_service
path: code
token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT
- name: 安装pip环境
run: |
pip install -r code/requirements.txt
pip uninstall -y numpy
- name: 打包编译
run: |
cd code
python packing_app.py \
--extra_sys_str /usr/local/site-packages,/usr/local/opencv \
--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 }} # 给最高的权限





11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# jadehh_file
文件托管
# 视频拼接算法服务
## 视频拼接算法服务V1.0.3.8 - 2024-09-19 09:22:06
vs_algorithm_serviceV1.0.3.8
* [发布地址](https://github.com/jadehh/VideoStitching/releases/tag/vs_algorithm_serviceV1.0.3.8)
* [详细地址](https://github.com/jadehh/jadehh_file/releases/tag/vs_algorithm_serviceV1.0.3.8)
### 下载地址
* [vs_algorithm_service_lib64.zip](https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/vs_algorithm_serviceV1.0.3.8/vs_algorithm_service_lib64.zip)
* [vs_algorithm_service](https://gh.ddlc.top/https://github.com/jadehh/jadehh_file/releases/download/vs_algorithm_serviceV1.0.3.8/vs_algorithm_service)
----

0 comments on commit 0d2d3ba

Please sign in to comment.