Skip to content

Commit

Permalink
Create release-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
surajpaib committed Mar 26, 2024
1 parent 1daf50b commit 42001a9
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This is a basic workflow that is manually triggered

name: PyPI Release
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
version:
# Friendly description to be shown in the UI instead of 'name'
description: 'Release type'
# Default value if no value is explicitly provided
default: 'major'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.9

- name: Install poetry
run: make setup

- name: Bump version
run: |
poetry version ${{ inputs.version }}
- name: Commit & push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Bump version" || echo "No changes to commit"
git push
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: 3.9
pypi_token: ${{ secrets.PYPI_TOKEN }}
allow_poetry_pre_release: "yes"
ignore_dev_requirements: "yes"

0 comments on commit 42001a9

Please sign in to comment.