Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EAS android preview build workflow #832

Merged
merged 47 commits into from
Apr 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
f26df48
Biometric authentication
Isthisanmol Apr 4, 2024
57b3114
workflow changes
Isthisanmol Apr 5, 2024
4d710d8
Changes in expo-build
Isthisanmol Apr 6, 2024
b5272a6
Workflow changes 2
Isthisanmol Apr 6, 2024
0779fa9
Workflow changes 3
Isthisanmol Apr 6, 2024
e2034a8
Workflow changes 4
Isthisanmol Apr 6, 2024
c3e5135
Workflow changes 5
Isthisanmol Apr 6, 2024
25f25f8
add app config file for eas
Isthisanmol Apr 6, 2024
08448d6
Merge branch 'fix-workflows' of github.com:andrew-bierman/PackRat int…
Isthisanmol Apr 6, 2024
cb56049
remove app.json from git ignore
Isthisanmol Apr 7, 2024
ce7f700
remove gradle.properties from git ignore
Isthisanmol Apr 7, 2024
05dfed6
remove gradle.properties from git ignore
Isthisanmol Apr 7, 2024
7f3c5ce
remove console logs
Isthisanmol Apr 7, 2024
55a76a2
add hermesEnabled=true in gradle.properties
Isthisanmol Apr 7, 2024
e645525
Remove mapbox download token
Isthisanmol Apr 7, 2024
6ba20a4
changes in eas json and uncomment rn mapbox key field in gradle.prope…
Isthisanmol Apr 7, 2024
6782340
changes in eas json and uncomment rn mapbox key field in gradle.prope…
Isthisanmol Apr 7, 2024
14dfd5f
remove biometric code
Isthisanmol Apr 8, 2024
957fc11
Comment RIconButton in ZDropdown
Isthisanmol Apr 8, 2024
4ead074
Uncomment RIconButton in ZDropdown
Isthisanmol Apr 9, 2024
e1991dd
Upgrade react-reanimated version
Isthisanmol Apr 9, 2024
002e60f
Add preview.yml in github workflows
Isthisanmol Apr 10, 2024
17effa5
changes in github workflows
Isthisanmol Apr 10, 2024
6a2b461
changes in github workflows2
Isthisanmol Apr 10, 2024
242a32d
changes in github workflows3
Isthisanmol Apr 10, 2024
80e37c4
changes in github workflows4
Isthisanmol Apr 10, 2024
de957ab
changes in github workflows5
Isthisanmol Apr 10, 2024
b6f4c04
changes in github workflows 6
Isthisanmol Apr 10, 2024
96db9a0
changes in github workflows 7
Isthisanmol Apr 11, 2024
bb960cc
changes in github workflows8
Isthisanmol Apr 11, 2024
f9199aa
changes in github workflows9
Isthisanmol Apr 11, 2024
b0e90f2
changes in github workflows10
Isthisanmol Apr 11, 2024
f5fc859
changes in github workflows11
Isthisanmol Apr 11, 2024
f4a8083
changes in github workflows12
Isthisanmol Apr 11, 2024
1253acc
changes in github workflows13
Isthisanmol Apr 11, 2024
d8a45d6
changes in github workflow14
Isthisanmol Apr 11, 2024
29c1db7
changes in app.config
Isthisanmol Apr 11, 2024
f5e49bc
changes in workflows
Isthisanmol Apr 13, 2024
d129917
Workflow changes
Isthisanmol Apr 13, 2024
909befa
Workflow changes1
Isthisanmol Apr 13, 2024
1b8b4b0
Workflow changes2
Isthisanmol Apr 13, 2024
b1734c5
Workflow changes2.0
Isthisanmol Apr 13, 2024
fd4308d
Workflow changes2.1
Isthisanmol Apr 13, 2024
5f72507
workflow changes2.3
Isthisanmol Apr 13, 2024
68f9115
Add manual build workflow
Isthisanmol Apr 13, 2024
4f4754b
Merge remote-tracking branch 'origin/andrew_testing' into fix-workflows
Isthisanmol Apr 17, 2024
e3e5bb0
♻️ regen lock
andrew-bierman Apr 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changes in github workflows11
Isthisanmol committed Apr 11, 2024
commit f5fc8590d398e96d422f9fe22068f731aa7cb322
45 changes: 45 additions & 0 deletions .github/workflows/android-preview-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: android-preview-build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]

jobs:
update:
name: EAS Android Preview Build
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- 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: Checkout repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: yarn

- name: Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: yarn install

- name: Create preview
uses: expo/expo-github-action/preview@v8
with:
working-directory: apps/expo
command: eas build --platform android --profile preview