Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ksh-b committed Jun 16, 2024
2 parents bd16193 + 5793904 commit 8c62040
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout all the submodules
uses: actions/checkout@v4
with:
submodules: true

- name: Install dependencies
run: |
sudo apt update && sudo apt upgrade
submodules/flutter/bin/flutter config --no-analytics
submodules/flutter/bin/flutter pub get
- name: Build
run: submodules/flutter/bin/flutter build apk --split-per-abi

- name: Download all workflow run artifacts
uses: actions/download-artifact@v4

0 comments on commit 8c62040

Please sign in to comment.