railbird-gql/.gitea/workflows/android.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 9: mapping key "name" already defined at line 7
2024-02-03 21:58:54 -07:00

20 lines
694 B
YAML

on:
push:
branches:
- master
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'