From 8a01e2209b24274d61d9601a443e72051380abf1 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 18 Apr 2026 12:05:33 +0200 Subject: [PATCH] chore(ci): remove eas init from workflows --- .gitea/workflows/ci.yml | 3 --- .gitea/workflows/manual-build.yml | 3 --- README.md | 4 ++-- TODO.md | 2 +- 4 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f704c67..3e217f2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 \ diff --git a/.gitea/workflows/manual-build.yml b/.gitea/workflows/manual-build.yml index 9846dc1..697a779 100644 --- a/.gitea/workflows/manual-build.yml +++ b/.gitea/workflows/manual-build.yml @@ -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 \ diff --git a/README.md b/README.md index eeafcfd..f23c896 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/TODO.md b/TODO.md index dc1d742..df45084 100644 --- a/TODO.md +++ b/TODO.md @@ -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)