Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

fix: update Bun setup to source bashrc after installation #3

fix: update Bun setup to source bashrc after installation

fix: update Bun setup to source bashrc after installation #3

Workflow file for this run

name: Build apk
on:
push:
branches:
- feature/deploy
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: 20
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: 🏗 Setup Bun
run: |
curl -fsSL https://bun.sh/install | bash
source /home/runner/.bashrc
- name: 📦 Install dependencies
run: bun install
- name: 🚀 Build app
run: eas build --platform android --local