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