File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,13 @@ jobs:
145145
146146 # ACT: login to Docker Hub via CLI
147147 - name : Login to Docker Hub (act)
148+ if : ${{ env.ACT }}
148149 shell : bash
149150 run : echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
150151
151152 # GitHub CI: login action
152153 - name : Login to Docker Hub
154+ if : ${{ !env.ACT }}
153155 uses : docker/login-action@v3
154156 with :
155157 username : ${{ secrets.DOCKERHUB_USERNAME }}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ It extends the earlier **Centralized Logging & Monitoring API** project with:
3333- ✅ ** Serilog** for structured logging
3434- 🟣 ** Jaeger (via OpenTelemetry)** for distributed tracing
3535- 🧩 ** Docker Compose stack** for local observability setup
36- - 🚀 ** GitHub Actions CI/CD** for multi-arch image builds and releases
36+ - 🚀 ** GitHub Actions CI/CD** for image builds and pushes whenever a version tag (e.g., v1.2.3) is pushed to the master branch.
3737- 📊 ** Codecov** integration for coverage insights
3838
3939---
You can’t perform that action at this time.
0 commit comments