Update .woodpecker.yml
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed

This commit is contained in:
2026-01-15 07:31:55 +00:00
parent 68e41a6620
commit 3a8a566350

View File

@@ -120,17 +120,19 @@ steps:
containerize-apps: containerize-apps:
image: woodpeckerci/plugin-docker-buildx:latest image: woodpeckerci/plugin-docker-buildx:latest
environment: environment:
gitea_registry_user: trent GITEA_USER:
gitea_registry_token: cffca88be19d4a4019649c71cc797a4c68da7012 from_secret: gitea_registry_user
GITEA_TOKEN:
from_secret: gitea_registry_token
commands: commands:
- | - |
set -euf set -euf
cd "${CI_WORKSPACE}" cd "${CI_WORKSPACE}"
echo "DEBUG: Użytkownik = '${gitea_registry_user}'" echo "DEBUG: Użytkownik = '$GITEA_USER'"
echo "DEBUG: Token (pierwsze 4 znaki) = ${gitea_registry_token:0:4}..." echo "DEBUG: Token (pierwsze 4 znaki) = $GITEA_TOKEN..."
echo "${gitea_registry_token}" | docker login git.modwad.pl -u "${gitea_registry_user}" --password-stdin echo "$GITEA_TOKEN" | docker login git.modwad.pl -u "$GITEA_USER" --password-stdin
dotnet restore dotnet restore