Skip to content

Commit b820d2a

Browse files
committed
add pypi publish workflow
1 parent 5361e62 commit b820d2a

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/publish.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v**'
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}-publish
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build-n-publish:
14+
runs-on: ubuntu-20.04
15+
#if: startsWith(github.event.ref, 'refs/tags')
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Set up Python 3.10
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: '3.10'
22+
- name: Install wheel
23+
run: pip install wheel
24+
- name: Build ModelScope-Agent
25+
run: python setup.py sdist bdist_wheel
26+
- name: Publish package to PyPI
27+
run: |
28+
pip install twine
29+
twine upload package/dist/* --skip-existing -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_version():
3333
'ModelScope Agent: Be a powerful models and tools agent based on ModelScope and open source LLM.',
3434
author='Modelscope Team',
3535
author_email='[email protected]',
36-
keywords='python,agent,LLM,AIGC',
36+
keywords='python,agent,LLM,AIGC,qwen,ModelScope',
3737
url=
3838
'https://github.com/modelscope/modelscope-agent', # Replace with your repository URL
3939
license='Apache License 2.0',

0 commit comments

Comments
 (0)