From 815970b75700ac979586aefad1364e50e55481d7 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Mon, 19 Feb 2024 13:17:14 -0500 Subject: [PATCH] fix: run checkout --- .github/workflows/test_action.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_action.yml b/.github/workflows/test_action.yml index 3782ad1..dadc210 100644 --- a/.github/workflows/test_action.yml +++ b/.github/workflows/test_action.yml @@ -42,6 +42,11 @@ jobs: - image_name: lxqt major_version: 39 steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Build image uses: ./ with: @@ -108,6 +113,11 @@ jobs: - image_name: lxqt major_version: 39 steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Determine AKMODS_FLAVOR run: | if [[ "${{ matrix.image_variant }}" =~ ^asus* ]]; then @@ -119,7 +129,7 @@ jobs: fi - name: Build image - uses: JasonN3/build-action@action + uses: ./ with: image_name: ${{ matrix.image_name }} image_variant: ${{ matrix.image_variant }}