Skip to content

Commit

Permalink
[Fix] CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wxy1343 committed Dec 22, 2021
1 parent 2648876 commit 2c82286
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: get version
id: version
run: echo "##[set-output name=version;]$(python main.py --version | cut -d ' ' -f3 | awk '$1=$1')"
run: echo "##[set-output name=version;]$(python aliyunpan.py --version | cut -d ' ' -f3 | awk '$1=$1')"

- name: set tag name
id: tag
Expand All @@ -60,7 +60,7 @@ jobs:
run: echo "##[set-output name=name;]$(echo aliyunpan-cli-${{ runner.os }}-$(arch)-${{ steps.tag.outputs.name }})"

- name: run pyinstaller
run: pyinstaller -F main.py -n aliyunpan-cli
run: pyinstaller -F aliyunpan.py -n aliyunpan-cli

- run: |
chmod +x dist/*
Expand Down
2 changes: 1 addition & 1 deletion aliyunpan/about.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.0.0'
__version__ = '3.0.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'Programming Language :: Python :: 3 :: Only',
],
keywords='aliyunpan, aliyundrive, cli, tui',
py_modules=["main"],
py_modules=["aliyunpan"],
packages=['aliyunpan', 'aliyunpan/api', 'aliyunpan/cli', 'dlnap/dlnap'],
python_requires='>=3.6, <4',
install_requires=install_requires,
Expand Down

0 comments on commit 2c82286

Please sign in to comment.