chore(ci): remove eas init from workflows
Some checks failed
Luggage List Build / build-android (push) Failing after 39s
Luggage List Build / build-web (push) Successful in 1m0s
Luggage List Build / release (push) Has been skipped

This commit is contained in:
2026-04-18 12:05:33 +02:00
parent b30fb3b19c
commit 8a01e2209b
4 changed files with 3 additions and 9 deletions

View File

@@ -40,9 +40,6 @@ jobs:
- name: 📦 Install dependencies
run: pnpm install
- name: 🧩 Init EAS project
run: eas init --non-interactive
- name: 👷 Build app
run: |
eas build --local \

View File

@@ -38,9 +38,6 @@ jobs:
- name: 📦 Install dependencies
run: pnpm install
- name: 🧩 Init EAS project
run: eas init --non-interactive
- name: 👷 Build app
run: |
eas build --local \

View File

@@ -29,5 +29,5 @@ npm run start
Gitea workflows are in `.gitea/workflows`:
- `dev.yml`: smoke check via `expo export --platform web` on non-main branches
- `ci.yml`: Android APK build via `eas init` + `eas build --local`, web bundle export, release tag/artifacts on `main`
- `manual-build.yml`: manual Android APK build via `eas init` + `eas build --local`
- `ci.yml`: Android APK build via `eas build --local`, web bundle export, release tag/artifacts on `main`
- `manual-build.yml`: manual Android APK build via `eas build --local`

View File

@@ -28,4 +28,4 @@
- [x] Added trip deletion flow and confirmation
- [x] Updated Gitea workflows/artifacts naming for Luggage List
- [x] Ran local web export smoke checks successfully
- [x] Switched CI/manual APK workflow to run `eas init --non-interactive` before `eas build --local`
- [x] Removed `eas init` from CI/manual workflows (run once locally instead)