diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 63c418b..1c734bd 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -36,7 +36,10 @@ jobs: - name: Build Image working-directory: ${{matrix.image}} - run: docker build . --file Dockerfile --tag ghcr.io/rahulsom/${{matrix.image}}:$(date +%s) + run: |- + docker build . --file Dockerfile \ + --tag ghcr.io/rahulsom/${{matrix.image}}:$(date +%s) \ + --tag ghcr.io/rahulsom/${{matrix.image}}:latest - name: Push Image if: github.ref == 'refs/heads/main'