Skip to content

Release v0.5.0

Release v0.5.0 #24

Workflow file for this run

name: Android
on:
workflow_call:
inputs:
release_tag:
required: true
type: string
release_name:
required: true
type: string
push:
branches:
- '**'
paths-ignore:
- '**/*.md'
- '**.md'
- '.github/**'
- 'docs/**'
pull_request:
branches:
- main
jobs:
android-build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '17'
- name: Set up Flutter
uses: subosito/[email protected]
with:
channel: 'stable'
- name: Install dependencies
run: cd confichat && flutter pub get
- name: Update third party licenses Android
run: cd confichat && flutter pub run flutter_oss_licenses:generate.dart
- name: Build Android App
run: cd confichat && flutter build apk --release