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