Browse Source

Pull submodules.

scossu 4 months ago
parent
commit
8f6a9de5c8
1 changed files with 5 additions and 0 deletions
  1. 5 0
      .github/workflows/push-docker-image.yml

+ 5 - 0
.github/workflows/push-docker-image.yml

@@ -14,14 +14,19 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
+        with:
+          submodules: recursive
+
       - name: Build the Docker image
         run: >
           docker build . --tag $DOCKER_USER/$REPO_NAME:${{ github.ref_name }}
           --tag $DOCKER_USER/$REPO_NAME:latest
+
       - name: Login to Docker Hub
         uses: docker/login-action@v3
         with:
           username: lcnetdev
           password: ${{ secrets.DOCKER_HUB }}
+
       - name: Push to Docker Hub
         run: docker push $DOCKER_USER/$REPO_NAME --all-tags