From c3e79d29d427910a88a1b512146f4c3ded2225bd Mon Sep 17 00:00:00 2001 From: b-long <(none)> Date: Thu, 18 Jul 2024 20:52:01 -0400 Subject: [PATCH] Fix build --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b7380e6..c8edc09 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -100,7 +100,7 @@ jobs: build_linux_x86_64: # if: false name: Linux 311 x86_64 - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -140,10 +140,10 @@ jobs: - name: Test Python wheel run: | # Test wheel installation - /usr/local/bin/python_for_build -m pip install wheelhouse/*.whl + python3 -m pip install wheelhouse/*.whl # Test wheel functionality - /usr/local/bin/python_for_build validate_ohpygossh.py + python3 validate_ohpygossh.py - name: Upload atifacts uses: actions/upload-artifact@v4