Skip to content

Commit

Permalink
🚚 cd: add eas setup
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPetros committed Jun 14, 2024
1 parent 008b477 commit 4bb09dd
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ jobs:

if: ${{ github.event.workflow_run.conclusion == 'success' }}

step:
- name: Checkout repository
uses: actions/checkout@v3
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Node setup
uses: actions/node-setup@v3
with:
node-version: 18.x

- name: EAS setup
uses: expo/expo-github-action@
with:
eas-version: latest
packager: npm
token: ${{ EAS_TOKEN }}

- name: Build
run: eas build --platform android --profile devClient --non-interactive --non-wait

0 comments on commit 4bb09dd

Please sign in to comment.