Skip to content

Commit

Permalink
[#68657] .github: workflows: Fix checkout action
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Torhan <[email protected]>
  • Loading branch information
m-torhan committed Nov 14, 2024
1 parent 6811ea0 commit 1b24044
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1b24044

Please sign in to comment.