feat: update image requirements to landscape orientation and add CI/CD workflow
Some checks failed
Build App / build (push) Failing after 3m44s

This commit is contained in:
2026-03-01 15:53:36 +01:00
parent 44b4277b8e
commit 2f4a238eba
9 changed files with 95 additions and 15 deletions

43
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,43 @@
name: Build App
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v2
- name: 🏗 Setup Node
uses: actions/setup-node@v2
with:
node-version: 22
- name: 🏗 Setup Expo and EAS
uses: expo/expo-github-action@v7
with:
token: ${{ secrets.EXPO_TOKEN }}
expo-version: latest
eas-version: latest
- name: 📦 Install dependencies
run: npm install
working-directory: App
- name: 👷 Build app
run: |
eas build --local \
--non-interactive \
--output=./app-build \
--platform=android \
--profile=preview
working-directory: App
- name: 📤 Upload build artifact
uses: actions/upload-artifact@v4
with:
name: android-preview-build.zip
path: App/app-build/*
if-no-files-found: error