Skip to content

Initial arm64

Initial arm64 #150

Workflow file for this run

name: Build
on:
pull_request:
push:
tags:
- '*'
branches:
- master
- '*package*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: subosito/[email protected]
with:
channel: 'stable'
- run: flutter analyze --no-fatal-infos
build-windows:
runs-on: windows-latest
needs: lint
steps:
- uses: actions/[email protected]
- name:
run: git fetch --prune --unshallow --tags
- uses: subosito/[email protected]
with:
channel: 'stable'
- run: flutter config --enable-windows-desktop
- run: .\package.bat
- uses: kittaakos/upload-artifact-as-is@v0
with:
path: '*.msi'
build-linux:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/[email protected]
- name:
run: git fetch --prune --unshallow --tags
- uses: subosito/[email protected]
with:
channel: 'stable'
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev libsqlite3-dev
- run: flutter config --enable-linux-desktop
- run: ./package.sh
- uses: kittaakos/upload-artifact-as-is@v0
with:
path: '*.deb'
- uses: kittaakos/upload-artifact-as-is@v0
with:
path: '*.tar.xz'