From 8a87e9d4be6293dac7afe9c1544cccbf7fafa9e9 Mon Sep 17 00:00:00 2001 From: Evan Forbes <42654277+evan-forbes@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:21:28 -0500 Subject: [PATCH] fix: pre-built binary support for Ubuntu 20.04 (#2728) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Overview I think this should fix #2727, I didn't see any docs to see how to format the version specified for ubuntu ## Checklist - [x] New and updated code has appropriate documentation - [x] New and updated code has new and/or updated testing - [x] Required CI checks are passing - [x] Visual proof for any user facing features like CLI or documentation updates - [x] Linked issues closed with keywords ## Testing Tested with [celestia-app_Linux_x86_64.tar.gz](https://github.com/rootulp/celestia-app/releases/download/v1.0.0-rc7/celestia-app_Linux_x86_64.tar.gz) created on https://github.com/rootulp/celestia-app/releases/tag/v1.0.0-rc7 OS | Version | Works --- | --- | --- Ubuntu | 20.04 | ✅ Ubuntu | 23.04 | ✅ --------- Co-authored-by: Rootul Patel (cherry picked from commit 58f6c40fc19a8b714f836c6c53d46c3a5166703f) --- .github/workflows/ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 9bb1e88d4f..66c12914bd 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -60,7 +60,7 @@ jobs: # Generate the release with goreleaser to include pre-built binaries goreleaser: needs: version_bump - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 if: | github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && contains(github.ref, 'refs/tags/'))