From 6b4620ca9896b1261a45f3844dc8cd67cd657b20 Mon Sep 17 00:00:00 2001 From: Will Chen Date: Mon, 12 May 2025 23:34:03 -0700 Subject: [PATCH] Pin to ubuntu v22.04 for linux release (#150) --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4912c22..b4b2e59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: # which prevents the race. # max-parallel: 1 matrix: - os: - [ + os: [ { name: "windows", image: "windows-latest" }, - { name: "linux", image: "ubuntu-latest" }, + # See https://github.com/dyad-sh/dyad/issues/96 + { name: "linux", image: "ubuntu-22.04" }, { name: "macos-intel", image: "macos-13" }, { name: "macos", image: "macos-latest" }, ]