Update .woodpecker.yml #21

Merged
trent merged 1 commits from Warehouses into master 2026-01-15 07:32:24 +00:00

View File

@@ -120,17 +120,19 @@ steps:
containerize-apps:
image: woodpeckerci/plugin-docker-buildx:latest
environment:
gitea_registry_user: trent
gitea_registry_token: cffca88be19d4a4019649c71cc797a4c68da7012
GITEA_USER:
from_secret: gitea_registry_user
GITEA_TOKEN:
from_secret: gitea_registry_token
commands:
- |
set -euf
cd "${CI_WORKSPACE}"
echo "DEBUG: Użytkownik = '${gitea_registry_user}'"
echo "DEBUG: Token (pierwsze 4 znaki) = ${gitea_registry_token:0:4}..."
echo "DEBUG: Użytkownik = '$GITEA_USER'"
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