Skip to content

Commit

Permalink
fix publish-to-pypi workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Apr 7, 2024
1 parent b930295 commit 914002b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ name: Publish Python 🐍 distributions 📦 to PyPI
on:
release:
types: [created]
workflow_dispatch:

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.11
- name: Install wheel and setuptools
run: >-
python -m
Expand Down

0 comments on commit 914002b

Please sign in to comment.