Skip to content

Commit

Permalink
update workflows and packages
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyans Jain <[email protected]>
  • Loading branch information
CodeWithShreyans committed Oct 19, 2024
1 parent b3bc20a commit 34e6584
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: macos-15
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🏗 Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: latest

Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/build-sim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on:
push:
branches-ignore:
- main

jobs:
build:
runs-on: macos-15
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4

- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
node-version: latest

- name: 🏗 Setup Bun
uses: oven-sh/setup-bun@v2

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

- name: 📦 Install dependencies
run: bun install

- name: 🚧 Build app
run: eas build --profile ios-simulator --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa

- name: ⬆️ Upload IPA
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/build.ipa
26 changes: 26 additions & 0 deletions .github/workflows/update-guides.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
paths:
- "guides/**"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4

- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
node-version: latest

- name: ⬆️ Upload to R2
uses: ryand56/r2-upload-action@latest
with:
r2-account-id: ${{ secrets.R2_ACCOUNT_ID }}
r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }}
r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }}
r2-bucket: ${{ secrets.R2_BUCKET }}
source-dir: guides
destination-dir: ./
Binary file modified bun.lockb
Binary file not shown.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
},
"dependencies": {
"@expo/vector-icons": "^14.0.4",
"@gorhom/bottom-sheet": "^4.6.4",
"@gorhom/bottom-sheet": "^5.0.2",
"@react-native-async-storage/async-storage": "2.0.0",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-community/slider": "4.5.3",
"@react-native-community/slider": "4.5.4",
"@react-native-picker/picker": "2.8.1",
"@react-native-segmented-control/segmented-control": "2.5.4",
"@react-navigation/bottom-tabs": "^6.6.1",
Expand All @@ -29,7 +29,7 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"deep-equal": "^2.2.3",
"expo": "~51.0.37",
"expo": "~51.0.38",
"expo-background-fetch": "^12.0.1",
"expo-blur": "~13.0.2",
"expo-build-properties": "^0.12.5",
Expand All @@ -52,23 +52,23 @@
"react-dom": "18.3.1",
"react-native": "~0.75.4",
"react-native-gesture-handler": "~2.20.0",
"react-native-keyboard-controller": "^1.14.0",
"react-native-reanimated": "~3.15.4",
"react-native-safe-area-context": "4.11.0",
"react-native-keyboard-controller": "^1.14.2",
"react-native-reanimated": "~3.16.0",
"react-native-safe-area-context": "4.11.1",
"react-native-screens": "~3.34.0",
"react-native-svg": "15.7.1",
"react-native-svg": "15.8.0",
"react-native-uitextview": "^1.4.0",
"react-native-vector-icons": "^10.2.0",
"react-native-webview": "13.8.6",
"react-native-webview": "13.12.3",
"react-native-youtube-iframe": "^2.3.0",
"resend": "^4.0.0",
"sonner-native": "^0.15.0",
"string-similarity-js": "^2.1.4",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13"
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/core": "^7.25.8",
"@types/react": "~18.3.11",
"typescript": "~5.6.3"
},
Expand Down

0 comments on commit 34e6584

Please sign in to comment.