Add debug to workflow
Some checks failed
Build and Push Docker Image / build (push) Failing after 3s
Some checks failed
Build and Push Docker Image / build (push) Failing after 3s
This commit is contained in:
@@ -11,11 +11,22 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout
|
||||
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
|
||||
env:
|
||||
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
|
||||
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.umbra.mom \
|
||||
-u "${{ secrets.REGISTRY_USER }}" --password-stdin
|
||||
echo "$REGISTRY_TOKEN" | docker login gitea.umbra.mom \
|
||||
-u "$REGISTRY_USER" \
|
||||
--password-stdin
|
||||
|
||||
- name: Build image
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user