File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 5353 working-directory : ./example
5454 id : expo
5555 run : echo "EXPO_CONFIG=$(npx expo config --json)" >> $GITHUB_OUTPUT
56+
57+ - name : Get branch info from EAS
58+ working-directory : ./example
59+ id : eas
60+ run : |
61+ branch_id=$(eas branch:view pr-${{ github.event.number }} --json --non-interactive | jq -r '.id')
62+ echo "BRANCH_ID=$branch_id" >> $GITHUB_OUTPUT
5663
5764 - name : Comment on PR
5865 uses : actions/github-script@v7
@@ -61,14 +68,15 @@ jobs:
6168 script : |
6269 const config = JSON.parse('${{ steps.expo.outputs.EXPO_CONFIG }}');
6370
71+ const branchId = '${{ steps.eas.outputs.BRANCH_ID }}';
72+ const channel = 'pr-${{ github.event.number }}';
73+
6474 const { sdkVersion } = config;
6575 const { projectId } = config.extra.eas;
6676
67- const channel = 'pr-${{ github.event.number }}';
68-
6977 const url = `https://expo.dev/@react-native-paper/react-native-paper-example?serviceType=eas&distribution=expo-go&scheme=exp+react-native-paper-example&channel=${channel}&sdkVersion=${sdkVersion}`;
7078 const body = `The mobile version of example app from this branch is ready! You can [see it here.](${url})
71- <a href="${url}"><img src="https://qr.expo.dev/eas-update?appScheme=exp& projectId=${projectId}&channel=${channel}& runtimeVersion=exposdk:${sdkVersion}&host=u.expo.dev " height="200px" width="200px"></a>
79+ <a href="${url}"><img src="https://qr.expo.dev/eas-update?projectId=${projectId}&runtimeVersion=exposdk:${sdkVersion}&branchId=${branchId} " height="200px" width="200px"></a>
7280 `;
7381
7482 const comments = await github.rest.issues.listComments({
You can’t perform that action at this time.
0 commit comments