From 0af996afba083c395d2a228e020e0f84ff98553c Mon Sep 17 00:00:00 2001 From: ALEZ <38623465+ALEZ-DEV@users.noreply.github.com> Date: Thu, 7 Dec 2023 20:39:20 +0100 Subject: [PATCH] Update ci.yml with linux build and apk build --- .github/workflows/ci.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d74469b..e1e1aec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,25 @@ jobs: cargo install rinf flutter upgrade refreshenv - protoc --version - name: Build-Windows run: | flutter pub get rinf message flutter build windows --release + build-linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: flutter-actions/setup-flutter@v2 + - name: Setup-environment + run: | + sudo apt-get update + sudo apt-get install -y protobuf-compiler + cargo install rinf + flutter upgrade + - name: Build-Linux + run: | + flutter pub get + rinf message + flutter build linux --release + flutter build apk --release