Skip to content

Commit

Permalink
Merge pull request #28 from mark-adams/build-and-deploy-updates
Browse files Browse the repository at this point in the history
Fix publishing workflow
  • Loading branch information
mark-adams authored Nov 14, 2024
2 parents b6b0dbb + aee2bad commit 9d54ad1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,16 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc

0 comments on commit 9d54ad1

Please sign in to comment.