Skip to content

Commit ceadfef

Browse files
authored
Add debug step for Docker credentials length check
Added debug step to check Docker username and token lengths.
1 parent b019c65 commit ceadfef

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main_andre-emotion-app.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
registry: index.docker.io
2828
username: ${{ secrets.DOCKER_USERNAME }}
2929
password: ${{ secrets.DOCKER_TOKEN }}
30+
31+
- name: Debug - Check username length
32+
run: |
33+
echo "Username length: ${#DOCKER_USERNAME}"
34+
echo "Token length: ${#DOCKER_TOKEN}"
3035
3136
- name: Build and push container image to registry
3237
uses: docker/build-push-action@v3
@@ -64,3 +69,4 @@ jobs:
6469

6570

6671

72+

0 commit comments

Comments
 (0)