diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..2f1213e --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,33 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - develop + +jobs: + deploy: + name: Build and Deploy to GitHub Pages + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Setup Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: "3.27.1" + channel: "stable" + + - name: Install Dependencies + run: flutter pub get + + - name: Build Flutter Web + run: flutter build web + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: build/web diff --git a/.github/workflows/quality-check.yml b/.github/workflows/quality-check.yml new file mode 100644 index 0000000..0ba6a12 --- /dev/null +++ b/.github/workflows/quality-check.yml @@ -0,0 +1,27 @@ +name: Quality Checks + +on: [push] + +jobs: + quality-check: + name: Lint and Build + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Setup Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: "3.27.1" + channel: "stable" + + - name: Install Dependencies + run: flutter pub get + + - name: Run Linter + run: flutter analyze + + - name: Build Flutter Web + run: flutter build web diff --git a/.gitignore b/.gitignore index f246804..bd8c975 100644 --- a/.gitignore +++ b/.gitignore @@ -36,7 +36,6 @@ migrate_working_dir/ /build/ # Web related -lib/generated_plugin_registrant.dart # Symbolication related app.*.symbols @@ -57,4 +56,4 @@ firebase_credentials.json # Assets /assets/default-icons -/assets/i18n \ No newline at end of file +/assets/i18n