Skip to content

Commit

Permalink
fix: forget to build plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Nov 4, 2024
1 parent d5a5538 commit 9096df2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-aab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Build tw plugins & scripts
run: |
pnpm run build:plugin
pnpm run build:preload
- name: Build by eject eas and remove debug signing key for aab
run: |
pnpm exec expo prebuild -p android --clean
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Build tw plugins & scripts
run: |
pnpm run build:plugin
pnpm run build:preload
- name: Build by eject eas and not remove debug signing key for apk
run: pnpm exec expo prebuild -p android --clean

Expand Down
1 change: 1 addition & 0 deletions assets/preload/streamChunksPreloadScript.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
script.parentNode.replaceChild(newScript, script);
}
catch (error) {
// FIXME: can't catch error `SyntaxError: Can't create duplicate variable: 'A'` on iOS
console.error("Faile to refresh script tag with error ".concat(error.message, ": newScript, script"), newScript, script, error);
}
}
Expand Down

0 comments on commit 9096df2

Please sign in to comment.