Skip to content

Commit

Permalink
fix pack error and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Aug 23, 2022
1 parent fe37bf8 commit 7601983
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
- name: test pack
run: |
pip3 install -r requirements.txt
pip3 install pyinstaller wheel
pip3 install pyinstaller==5.1 wheel
python setup.py sdist bdist_wheel
python pack.py
2 changes: 1 addition & 1 deletion .github/workflows/pack_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y x11-utils libxkbcommon-x11-0
pip3 install -r requirements.txt
pip3 install -U pyinstaller wheel
pip3 install -U pyinstaller==5.1 wheel
python setup.py sdist bdist_wheel
python pack.py
2 changes: 1 addition & 1 deletion .github/workflows/release_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
sudo apt-get update
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y x11-utils libxkbcommon-x11-0
pip3 install -r requirements.txt
pip3 install pyinstaller wheel
pip3 install pyinstaller==5.1 wheel
python setup.py sdist bdist_wheel
python pack.py
release_path=`python pack.py ${{ matrix.os }}`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
python --version
pip3 install -r requirements.txt
pip3 install pyinstaller wheel
pip3 install pyinstaller==5.1 wheel
python setup.py sdist bdist_wheel
python pack.py
release_path=`python pack.py ${{ matrix.os }}`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
python --version
pip3 install -r requirements.txt
pip3 install pyinstaller wheel
pip3 install pyinstaller==5.1 wheel
python setup.py sdist bdist_wheel
python pack.py
$release_path = python pack.py ${{ matrix.os }}
Expand Down
5 changes: 5 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,11 @@ python COMTool/Main.py

5. pull request

## Write your own plugins in minutes

see [docs/plugins.md](./docs/plugins.md)


## Add translate

* Install environment first(python pip packages in the requirments.txt)
Expand Down
4 changes: 4 additions & 0 deletions README_ZH.MD
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ python COMTool/Main.py

5. 创建合并请求

## 快速编写你自己的插件

参考 [docs/plugins.md](./docs/plugins_zh.md)

## 添加翻译

* 先安装环境(`requirments.txt`中的`python pip`包)
Expand Down

0 comments on commit 7601983

Please sign in to comment.