Skip to content

Commit 2328a14

Browse files
committed
fix(ci): use docker metadata action and add debug step
- Replace custom bash script with docker/metadata-action - Add directory verification step for debugging - Fix tag format issues causing build failures - Properly handle GitHub Actions output variables
1 parent 51f83fa commit 2328a14

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-push-images.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,14 @@ jobs:
123123
- name: Checkout code
124124
uses: actions/checkout@v4
125125

126+
- name: Verify service directory
127+
run: |
128+
echo "Current directory: $(pwd)"
129+
echo "Checking for service directory..."
130+
ls -la src/${{ matrix.service }}/
131+
echo "Dockerfile exists:"
132+
ls -la src/${{ matrix.service }}/Dockerfile
133+
126134
- name: Set up Docker Buildx
127135
uses: docker/setup-buildx-action@v3
128136

0 commit comments

Comments
 (0)