Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjoyo authored Dec 27, 2023
1 parent 43ba0e7 commit 6d74871
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Python package
on:
push:
branches:
- master
- develop

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish python poetry package
uses: JRubics/[email protected]
with:
# The version of python to install
python_version: "3.11"
pypi_token: ${{ secrets.PYPI_TOKEN }}
# Install project without developer requirements.
ignore_dev_requirements: "yes"
package_directory: "bpm-ai-core"

0 comments on commit 6d74871

Please sign in to comment.