We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a4732 commit a31d1c3Copy full SHA for a31d1c3
.github/workflows/ci.yml
@@ -13,6 +13,15 @@ jobs:
13
- name: Checkout repository
14
uses: actions/checkout@v4
15
16
+ - name: Debug secrets
17
+ run: |
18
+ echo "Username length: ${#DOCKERHUB_USERNAME}"
19
+ echo "Token length: ${#DOCKERHUB_TOKEN}"
20
+ echo "Username starts with: ${DOCKERHUB_USERNAME:0:3}..."
21
+ env:
22
+ DOCKERHUB_USERNAME: ${{ vars.DOCKERHUB_USERNAME }}
23
+ DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
24
+
25
- name: Log in to Docker Hub
26
uses: docker/login-action@v3
27
with:
0 commit comments