Skip to content

Commit f3143db

Browse files
authored
release version script, version bump (#416)
* release version script, version bump * remove shell in workflow
1 parent 1629227 commit f3143db

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.4"
1+
__version__ = "0.2.5"

0 commit comments

Comments
 (0)