Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ksh-b authored Jun 15, 2024
1 parent 6fd98b1 commit 5793904
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 5793904

Please sign in to comment.