-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
34 lines (30 loc) · 926 Bytes
/
Copy pathandroid-basic.yml
File metadata and controls
34 lines (30 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build Android (basic-example)
on:
pull_request:
paths:
- .github/workflows/android-basic.yml
- .github/workflows/android-build.yml
- packages/react-native-gesture-handler/package.json
- packages/react-native-gesture-handler/android/**
- packages/react-native-gesture-handler/shared/**
- packages/react-native-gesture-handler/src/specs/**
- apps/basic-example/**
- '!apps/basic-example/ios/**'
- '!apps/basic-example/Gemfile*'
- rnrepo.config.json
- yarn.lock
push:
branches:
- main
workflow_dispatch:
concurrency:
group: android-basic-${{ github.ref }}
cancel-in-progress: true
jobs:
basic-example:
if: github.repository == 'software-mansion/react-native-gesture-handler'
uses: ./.github/workflows/android-build.yml
with:
app: basic-example
artifact-name: android-apk-basic-example
abi: x86_64