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 1629227 commit f3143dbCopy full SHA for f3143db
.github/workflows/release_version.yml
@@ -0,0 +1,26 @@
1
+name: Manual Release
2
+
3
+on:
4
+ workflow_dispatch: # This event allows manual triggering
5
6
+jobs:
7
+ release:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout Repository
12
+ uses: actions/checkout@v2
13
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: 3.x
18
19
+ - name: Install twine and wheel
20
+ run: pip install twine wheel
21
22
+ - name: Make Full
23
+ run: make full
24
25
+ - name: Upload to PyPI
26
+ run: python3 setup.py upload
guardrails/version.py
@@ -1 +1 @@
-__version__ = "0.2.4"
+__version__ = "0.2.5"
0 commit comments