Skip to content

Commit

Permalink
Github Actions: fix release automation
Browse files Browse the repository at this point in the history
The PyPI publishing workflow was using ubuntu-18.04 which doesn't exist anymore.  Switched to use ubuntu-latest so it will work in the future.

For the 0.4.0 release, I published it manually.
  • Loading branch information
micahsnyder committed Dec 7, 2023
1 parent 289688d commit 625ef9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: release
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
Expand Down

0 comments on commit 625ef9e

Please sign in to comment.