Skip to content

Commit

Permalink
added package build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
naman108 authored Apr 27, 2024
1 parent 390ae68 commit fbac643
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/python-dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,19 @@ jobs:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
# retrieve your distributions here
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build setuptools poetry
- name: Build
run: poetry build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit fbac643

Please sign in to comment.