From 78887f6278fc8a2ab34cc71ebec227cc5ceb0633 Mon Sep 17 00:00:00 2001 From: LewisB Date: Wed, 25 Dec 2024 15:13:33 +0100 Subject: [PATCH] fix: ubuntu version for android release --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index eb7b856f61..57d5da4761 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -27,7 +27,7 @@ on: jobs: codepush: name: Hot Code Push - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # hot push is for hotfix commits to PROD only # manual PROD releases and release commits are going through the full flow if: | @@ -79,7 +79,7 @@ jobs: build: name: Build # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Build runs on manual release or on any commit to dev/qa or on release commit to PROD # GH actions not supports regex match, so to avoid adding extra step with custom action # we compare to commt string to starts with 2. Should be updated on major version change