Skip to content

Commit

Permalink
Merge pull request #68 from casework/release-0.1.0
Browse files Browse the repository at this point in the history
Add steps to build project in publishing workflow
  • Loading branch information
kchason authored Jul 30, 2024
2 parents cd5c856 + 0c8dc9b commit d0d54eb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,21 @@ jobs:
# https://docs.pypi.org/trusted-publishers/using-a-publisher/
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up oldest tested Python
uses: actions/setup-python@v5
with:
python-version: "3.9"

- name: Install Dependencies
run: |
pip -q install poetry
poetry install
- name: Build Package
run: poetry build

- name: Push to PyPi
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit d0d54eb

Please sign in to comment.