From e7c1ce6813be3369b545d6f5834128fe1a74ceac Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Fri, 24 Mar 2023 21:57:11 +0100 Subject: [PATCH] adjusted release action to build the linux executable with an older ubuntu runner and thus an older glibc version (to make it compatible with older systems) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee4421ec..c5ec5a30 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ on: jobs: create_release: name: Create Github Release - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v3 @@ -29,7 +29,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-22.04] + os: [ubuntu-20.04] cabal: ["3.6"] ghc: ["8.10.7"]