docker: add checkout action to dockerfile
This commit is contained in:
parent
3a2635b9e1
commit
5b7d76608d
1 changed files with 4 additions and 0 deletions
4
.github/workflows/build-docker.yaml
vendored
4
.github/workflows/build-docker.yaml
vendored
|
@ -11,6 +11,10 @@ jobs:
|
|||
name: Build and push Docker image
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: "true"
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
|
Loading…
Reference in a new issue