Skip to content

Commit

Permalink
create workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Mar 4, 2024
1 parent 03b2877 commit 9b9cabc
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 6 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/bundle-deploy-eas-update.yml
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"
7 changes: 1 addition & 6 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ module.exports = function (config) {
alg: 'rsa-v1_5-sha256',
},
},
assetBundlePatterns: ['**/*'],
plugins: [
'expo-localization',
Boolean(process.env.SENTRY_AUTH_TOKEN) && 'sentry-expo',
Expand All @@ -135,12 +136,6 @@ module.exports = function (config) {
},
},
],
[
'expo-updates',
{
username: 'blueskysocial',
},
],
[
'expo-notifications',
{
Expand Down

0 comments on commit 9b9cabc

Please sign in to comment.