-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bundle and Deploy EAS Update | ||
|
||
on: | ||
push: | ||
branches: | ||
- hailey/expo-updates | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
bundleDeploy: | ||
name: Bundle and Deploy EAS Update | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: 🔧 Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
cache: yarn | ||
|
||
- name: ⚙️ Install dependencies | ||
run: yarn install | ||
|
||
- name: ⛏️ Setup Expo | ||
run: yarn global add eas-cli-local-build-plugin | ||
|
||
- name: 🔤 Compile translations | ||
run: yarn intl:build | ||
|
||
|
||
- name: 📦 Create Bundle | ||
run: npx expo export | ||
|
||
- name: 🚀 Deploy to Server | ||
run: echo "Later" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters