From 625ef9e79dec9d862c2e5f3827225916126145af Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Thu, 7 Dec 2023 13:11:34 -0500 Subject: [PATCH] Github Actions: fix release automation 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. --- .github/workflows/pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index b9854dd..17451c3 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -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