You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running eas update in github actions, icons do not show-up
To Reproduce
setup: mono repo with pnpm, node-linker=hoisted
preview.yaml
on:
workflow_dispatch:
pull_request:
paths:
- 'services/mobile/**'
types: [opened, synchronize]
jobs:
preview:
runs-on: ubuntu-latest
permissions:
pull-requests: write # Allow comments on PRs
contents: read # This is required for actions/checkout
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # In order for commitlint to check historic commits
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Check for EXPO_TOKEN
run: |
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then
echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions"
exit 1
fi
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
packager: pnpm
- name: 🚀 Publish update
run: |
cd services/mobile
eas update --auto
# - name: 🚀 Create preview
# uses: expo/expo-github-action/preview@v8
# with:
# working-directory: services/mobile
# # `github.event.pull_request.head.ref` is only available on `pull_request` triggers.
# # Use your own, or keep the automatically infered branch name from `--auto`, when using different triggers.
# command: eas update --auto --channel dev
It does not work with neither calling update directly NOR calling expo/expo-github-action/preview@v8.
On the other hand when I run eas update in terminal, all icons load successfully. I tried to compare the metadata of the updates and it looks very similar.
The text was updated successfully, but these errors were encountered:
atesarova
changed the title
Icons do not show-up on Android when run update in github actions
Icons do not show-up on Android+iOS when run update in github actions
Apr 15, 2024
Description of the bug
After running eas update in github actions, icons do not show-up
To Reproduce
setup: mono repo with pnpm, node-linker=hoisted
It does not work with neither calling
update
directly NOR callingexpo/expo-github-action/preview@v8
.runtime version we set in app.config.js:
The whole pipeline runs succesfully:
Result:
No errors, the icons do not load
On the other hand when I run
eas update
in terminal, all icons load successfully. I tried to compare the metadata of the updates and it looks very similar.Expected behavior
Icons should load in updates using github actions
Actual behavior
Icons (using MaterialDesign icons) do not load:
Additional context
package.json:
Tested in emulator && real device
The text was updated successfully, but these errors were encountered: