Fix android build

This commit is contained in:
Ivan Malison 2024-02-03 21:58:54 -07:00
parent 89361e17e6
commit 497068627c

View File

@ -6,6 +6,14 @@ jobs:
build:
name: Install
runs-on: nixos-x86_64-linux
name: Build
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install react-native-vision-camera
run: nix develop --impure --command bash -c 'export HOME=$PWD; cd ./react-native-vision-camera/package; yarn install'
- name: install
run: nix develop --impure --command bash -c 'export HOME=$PWD; yarn config set link-folder . && yarn install'
- name: android-build
run: nix develop --impure --command bash -c 'export GRADLE_USER_HOME=$PWD; export HOME=$PWD; cd android; ./gradlew assembleDebug'