Skip to content

chore: android signing configuration #20

chore: android signing configuration

chore: android signing configuration #20

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
web:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get Flutter
uses: subosito/[email protected]
with:
channel: 'stable'
- name: Download dependencies
run: flutter pub get
- name: Setup Supabase
uses: supabase/setup-cli@v1
- name: Start Supabase local for tests
run: supabase start
- run: flutter test
- name: Configure git
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "[email protected]"
git fetch origin gh-pages:gh-pages
- name: Compile web and put in gh-pages branch
run: dart run peanut
- name: Push gh-pages
run: git push origin gh-pages