Skip to content

Commit

Permalink
添加变更日志和发布的 GitHub Action
Browse files Browse the repository at this point in the history
- 添加了详细的中文变更日志,突出显示了眼迹AI的功能。
- 实现了一个 GitHub Action 工作流来自动化发布过程。
- 工作流构建项目,使用 pyinstaller 创建二进制文件,并在 GitHub 上创建新发布版本。
- 发布版本包含基于 GitHub 运行编号的标签和发布名称。
- 发布说明从变更日志中获取。
- 增强了项目自动化和文档管理,以便更好地进行项目管理和部署。
  • Loading branch information
ctkqiang committed Jun 12, 2024
1 parent 4f93302 commit 04ff8f3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,23 @@ jobs:
- name: 设置Python
uses: actions/setup-python@v2
with:
python-version: '3.10.6'
python-version: '3.x'

- name: 创建和激活Python虚拟环境
run: python3 -m venv venv && source venv/bin/activate

- name: 安装系统依赖项
run: |
brew install pkg-config
run: |
brew update
brew install pkg-config
brew install openssl
brew install libffi
- name: 安装依赖项
run: |
python3 -m pip install --upgrade pip
pip3 install numpy opencv-python
pip3 install aiohttp==3.8.1 cchardet==2.1.7
pip3 install -r requirements.txt
- name: 构建二进制文件
Expand Down

0 comments on commit 04ff8f3

Please sign in to comment.