We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13944f1 commit 45887c1Copy full SHA for 45887c1
.github/workflows/publish-to-pypi.yml
@@ -5,6 +5,7 @@ on: push
5
jobs:
6
build:
7
name: Build distribution 📦
8
+ if: startsWith(github.ref, 'refs/tags/')
9
runs-on: ubuntu-latest
10
11
steps:
@@ -96,6 +97,7 @@ jobs:
96
97
98
publish-to-testpypi:
99
name: Publish Python 🐍 distribution 📦 to TestPyPI
100
+ if: startsWith(github.ref, 'refs/tags/') # only publish to TestPyPI on tag pushes
101
needs:
102
- build
103
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "alibabacloud-rds-openapi-mcp-server"
3
-version = "1.6.1"
+version = "1.6.2"
4
description = "MCP server for RDS Services via OPENAPI."
readme = "README.md"
requires-python = ">=3.12"
0 commit comments