Skip to content

Commit

Permalink
update workflow names for PyPi packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
epistoteles committed Jun 18, 2024
1 parent 8f9ccb6 commit 657b417
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,21 @@ jobs:
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
uses: pypa/gh-action-pypi-publish@release/v1
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python 3.x
uses: actions/setup-python@v5
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 on PyPi
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 657b417

Please sign in to comment.