Skip to content

Commit

Permalink
Merge pull request #3 from lukasrump/add-publish-package-workflow
Browse files Browse the repository at this point in the history
feat: add publish package workflow
  • Loading branch information
lukasrump authored Oct 10, 2024
2 parents 281f900 + 54de06e commit eb53cc6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Publish package
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.0
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description = "Get code reviews from llms"
authors = ["Lukas Rump"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/lukasrump/crllm"

[tool.poetry.dependencies]
python = "^3.10"
Expand Down

0 comments on commit eb53cc6

Please sign in to comment.