From 62613cc82783c24a501bbefdabf4f3091d13aa63 Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Thu, 20 Jun 2024 01:13:49 +0100 Subject: [PATCH] cleanup --- .github/workflows/build.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 222a77c..e42cc29 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,11 +18,12 @@ jobs: - uses: actions/checkout@v4 with: filter: blob:none - - name: checkout submodule ref - run: git submodule update --init --filter blob:none agnos-kernel-sdm845 - - id: kernel-submodule - run: echo "ref=$(git ls-tree HEAD | awk '$4 == "agnos-kernel-sdm845"' | awk '{print $3}')" >> "$GITHUB_OUTPUT" + - name: checkout kernel submodule + id: kernel-submodule + run: | + git submodule update --init --filter blob:none agnos-kernel-sdm845 + echo "ref=$(git ls-tree HEAD | awk '$4 == "agnos-kernel-sdm845"' | awk '{print $3}')" >> "$GITHUB_OUTPUT" - uses: actions/cache/restore@v4 id: restore-cache