From 056872cd8ab45bd8ba57cf90ee0c9480c8be4b9e Mon Sep 17 00:00:00 2001 From: authentik Default Admin Date: Sat, 6 Jun 2026 04:57:59 +0000 Subject: [PATCH] Delete directory '.github/workflows' --- .github/workflows/build.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b12c4ab..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build - -on: - pull_request: - push: - -jobs: - build-android: - name: Build for Android - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 - with: - distribution: 'zulu' - java-version: '17' - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - - run: flutter pub get - - run: flutter build apk --debug - build-ios: - name: Build for iOS - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - architecture: x64 - - run: flutter pub get - - run: flutter build ios --release --no-codesign