Skip to content

Commit

Permalink
release version script, version bump (#416)
Browse files Browse the repository at this point in the history
* release version script, version bump

* remove shell in workflow
  • Loading branch information
zsimjee authored Oct 31, 2023
1 parent 1629227 commit f3143db
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/release_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Manual Release

on:
workflow_dispatch: # This event allows manual triggering

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install twine and wheel
run: pip install twine wheel

- name: Make Full
run: make full

- name: Upload to PyPI
run: python3 setup.py upload
2 changes: 1 addition & 1 deletion guardrails/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.4"
__version__ = "0.2.5"

0 comments on commit f3143db

Please sign in to comment.