Skip to content

Commit fe59ef8

Browse files
committed
pre-release: v0.4.3-beta.1
1 parent ccae799 commit fe59ef8

File tree

4 files changed

+27
-41
lines changed

4 files changed

+27
-41
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: pypi-publish
2+
on:
3+
# https://docs.github.com/cn/actions/using-workflows/events-that-trigger-workflows#release
4+
release:
5+
types: [published]
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: checkout
11+
uses: actions/checkout@v3
12+
- name: set up Python3.9
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: 3.9
16+
- name: install pypa/build
17+
run: >-
18+
python -m pip install build --user
19+
- name: build
20+
run: >-
21+
python -m build --sdist --wheel --outdir dist/ .
22+
- name: publish
23+
uses: pypa/gh-action-pypi-publish@release/v1
24+
with:
25+
user: __token__
26+
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/sync_from_coding_devops.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/sync_to_coding_devops.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "qcloud-sdk-py"
77
description = "Python SDK for TencentCloud"
88
authors = [{name = "QuantTide Inc.", email = "opensource@quanttide.com"}]
9-
version = "0.4.2"
9+
version = "0.4.3-beta.1"
1010
classifiers = [
1111
"Programming Language :: Python :: 3",
1212
]

0 commit comments

Comments
 (0)