From 3881bc2295a1e7cf112d662564bff12fda497e73 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Wed, 9 Dec 2020 07:39:09 -0500 Subject: GHA: Use oldest OS images to build releases Closes #13493 --- .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 2acd615da1..d7f9556028 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,9 +12,10 @@ on: tags: - v[0-9]+.[0-9]+.[0-9]+ +# Build on the oldest supported images, so we have broader compatibility jobs: linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-16.04 outputs: version: ${{ steps.build.outputs.version }} release: ${{ steps.build.outputs.release }} @@ -42,7 +43,6 @@ jobs: retention-days: 1 appimage: - # Build on the oldest supported image, so we have broader compatibility runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v2 -- cgit