From 462bca576770693002ff42d19a3c5a50e4b2d54a Mon Sep 17 00:00:00 2001 From: Marie Date: Sat, 24 Sep 2022 18:19:36 +0200 Subject: [PATCH] Swap Install Deps and Get Submodules --- .github/workflows/buildnup.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildnup.yml b/.github/workflows/buildnup.yml index 0b46ac7..ff8fad7 100644 --- a/.github/workflows/buildnup.yml +++ b/.github/workflows/buildnup.yml @@ -49,13 +49,13 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Get Submodules - run: git submodule update --init - - name: Install Deps run: | apt update - apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev + apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev git rustc rustfmt cargo + + - name: Get Submodules + run: git submodule update --init - name: Build run: cargo build --release --verbose