From c4c88e2e05b93ffb1ed4971024af15636fbff082 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Tue, 3 Feb 2026 04:01:59 -0500 Subject: [PATCH] Simplify CI/CD section to Gitea Actions only Co-Authored-By: Claude Opus 4.5 --- README.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index a66e970..aa0c095 100644 --- a/README.md +++ b/README.md @@ -102,10 +102,9 @@ COPY --from=build /app/build/linux/arm64/release/bundle /app ENTRYPOINT ["/app/my_app"] ``` -## CI/CD +## CI/CD (Gitea Actions) ```yaml -# GitHub Actions / Gitea Actions jobs: build: runs-on: ubuntu-latest @@ -117,15 +116,6 @@ jobs: - run: flutter build apk --release ``` -```yaml -# GitLab CI -build: - image: svrnty/flutter-sdk:android-latest - script: - - flutter pub get - - flutter build apk --release -``` - ## Tags - `-latest` - Latest stable Flutter release