Add debug to workflow
Some checks failed
Build and Push Docker Image / build (push) Failing after 3s

This commit is contained in:
Jay
2026-03-31 15:08:40 +01:00
parent e1a90eb531
commit 5e7793233e

View File

@@ -11,11 +11,22 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Debug auth vars
env:
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
run: |
echo "USER: $REGISTRY_USER"
echo "TOKEN LENGTH: ${#REGISTRY_TOKEN}"
- name: Login to Gitea Registry - name: Login to Gitea Registry
env:
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
run: | run: |
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.umbra.mom \ echo "$REGISTRY_TOKEN" | docker login gitea.umbra.mom \
-u "${{ secrets.REGISTRY_USER }}" --password-stdin -u "$REGISTRY_USER" \
--password-stdin
- name: Build image - name: Build image
run: | run: |