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

fix: Changes branch to master. Work in Progrss #93

Closed
wants to merge 12 commits into from
37 changes: 37 additions & 0 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on:
push:
branches:
- feat/ios-workflow
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3

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

- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: XCaGI7YtuvlztcNSZwTbTQLGk3FfYabJ9HCa8Hkp

- name: 📦 Install dependencies
run: yarn install

- name: 🚀 Create update
env:
EXPO_CLI_YES: 1
run: |
eas init --non-interactive --id 3d81ac4a-f8fe-4ba4-99d0-0623c7780991 --force
eas update --auto --non-interactive

- name: 🚀 Upload to TestFlight
env:
EXPO_CLI_YES: 1
run: eas submit --platform ios --release-channel default
14 changes: 14 additions & 0 deletions eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"build": {
"production": {
"env": {
"APP_ENV": "production"
}
},
"development": {
"env": {
"APP_ENV": "development"
}
}
}
}
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,14 @@
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-intl": "8.2.25",
"babel-preset-react-native": "^4.0.1",
"eas-cli": "^7.8.2",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-sonarjs": "^0.25.1",
"expo": "^50.0.17",
"expo-cli": "^6.3.10",
"expo-image-picker": "~14.7.1",
"expo-splash-screen": "~0.26.4",
"expo-status-bar": "~1.11.1",
Expand Down
Loading
Loading