From 4a3a5f6e4b0ed054477f6995ce331a7a8ab60232 Mon Sep 17 00:00:00 2001 From: Gerrit Jacobus Potgieter <94914587+GerritPotgieter@users.noreply.github.com> Date: Mon, 3 Jun 2024 00:21:32 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4393682..db845ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: - development jobs: - build: + main: runs-on: ubuntu-latest steps: - name: Clone repository @@ -20,9 +20,10 @@ jobs: uses: subosito/flutter-action@v2 with: channel: stable - - run: flutter pub get + - run: | + sudo apt-get update -y + sudo apt-get install -y ninja-build libgtk-3-dev working-directory: ./frontend - - - run: flutter build Web + - run: flutter build linux working-directory: ./frontend