From 1b24044181bb486e0768ec6cb32c88ad93b68cc8 Mon Sep 17 00:00:00 2001 From: Maciej Torhan Date: Thu, 14 Nov 2024 09:55:55 +0100 Subject: [PATCH] [#68657] .github: workflows: Fix checkout action Signed-off-by: Maciej Torhan --- .github/workflows/ci.yml | 5 ++++- .github/workflows/docker.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6c81f0..a060086 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,11 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 with: - submodules: 'recursive' lfs: true + - name: Update submodules + run: | + ./build_tools/configure_git_url_rewrite.sh + git submodule update --init --recursive - name: Run README.md snippets run: | ./.github/scripts/readme-tests.sh diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5928f97..620cf3d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -20,8 +20,11 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 with: - submodules: 'recursive' lfs: false + - name: Update submodules + run: | + ./build_tools/configure_git_url_rewrite.sh + git submodule update --init --recursive - name: Build Docker image run: docker build . --tag ghcr.io/antmicro/kenning-bare-metal-iree-runtime:latest - name: Login to registry