Skip to content

Commit

Permalink
Adding release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedNasser8 committed Aug 29, 2024
1 parent 9d7fbf5 commit 377c912
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Publish to PyPI


on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
default: 'patch'
type: choice
options:
- 'major'
- 'minor'
- 'patch'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: '1.8.3'

- name: Install dependencies
run: poetry install

- name: Bump version
run: |
python handle_versioning.py ${{ github.event.inputs.version }}
git add pyproject.toml
git commit -m "Bump version to ${{ github.event.inputs.version }}"
git push
- name: Create tag
run: |
current_version=$(python -c "import toml; print(toml.load('pyproject.toml')['tool']['poetry']['version'])")
git tag current_version
git push origin current_version
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN: ${{ secrets.POETRY_PYPI_TOKEN }}
run: poetry publish --build

0 comments on commit 377c912

Please sign in to comment.