From 99ff75a215aac7b7dbdb2eb3fd537c0de0a9a180 Mon Sep 17 00:00:00 2001 From: Xor290 Date: Sun, 1 Mar 2026 13:46:58 +0100 Subject: [PATCH] chore: fix ci --- .github/workflows/frontend-client-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/frontend-client-build.yml b/.github/workflows/frontend-client-build.yml index 1bc1deb0..370a4a6b 100644 --- a/.github/workflows/frontend-client-build.yml +++ b/.github/workflows/frontend-client-build.yml @@ -58,6 +58,10 @@ jobs: jq '.expo.extra.eas.projectId = "${{ secrets.EXPO_PROJECT_ID_CLIENT }}"' app.json > app.tmp.json mv app.tmp.json app.json + - name: Map channel to branch + working-directory: mobile + run: eas channel:edit production --branch main --non-interactive + - name: Publish OTA update working-directory: mobile run: eas update --channel production --message "${{ github.event.head_commit.message }}" --non-interactive