diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2025-04-12 15:23:59 +0200 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2025-04-12 15:23:59 +0200 |
| commit | 1ef4f03a0babbd14bce9c137a777c9e56bbd64d9 (patch) | |
| tree | 7c662b0f5564cac8c0cd79eed017f811655a4fff /.github/workflows/docker-image.yml | |
| parent | d24ca1eb052c1011b0a103443dc40693eb040149 (diff) | |
Checkout submodule in actions
Diffstat (limited to '.github/workflows/docker-image.yml')
| -rw-r--r-- | .github/workflows/docker-image.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 2a4ade3..6997409 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -9,13 +9,15 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - + with: + submodules: "recursive" + - name: Build the Docker image run: docker build . --file Dockerfile --tag ghcr.io/delusionallogic/dht:${{ github.run_number }} - + - name: Tag as latest run: docker tag ghcr.io/delusionallogic/dht:${{ github.run_number }} ghcr.io/delusionallogic/dht:latest - + - name: Push the image run: > docker push ghcr.io/delusionallogic/dht:${{ github.run_number }} |
