From 6c4bf9ce6bbc0e6e78f2d1127ed58796152bc4bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 2 May 2026 12:47:04 +0000 Subject: [PATCH] modified: .gitea/actions/buildkit-build-push-dev/action.yaml modified: .gitea/workflows/ssh-client-build-deploy.yaml --- .gitea/actions/buildkit-build-push-dev/action.yaml | 7 +++---- .gitea/workflows/ssh-client-build-deploy.yaml | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/actions/buildkit-build-push-dev/action.yaml b/.gitea/actions/buildkit-build-push-dev/action.yaml index 00ded0b..c8c45c5 100644 --- a/.gitea/actions/buildkit-build-push-dev/action.yaml +++ b/.gitea/actions/buildkit-build-push-dev/action.yaml @@ -39,10 +39,9 @@ runs: shell: bash run: | set -euo pipefail - echo "USERNAME RAW: ${{ inputs.registry_username }}" - echo "PASSWORD RAW: ${{ inputs.registry_password }}" - USER="${{ inputs.registry_username }}" - PASS="${{ inputs.registry_password }}" + + USER='${{ inputs.registry_username }}' + PASS='${{ inputs.registry_password }}' AUTH_INLINE=$(printf '%s:%s' "$USER" "$PASS" | base64 -w0) diff --git a/.gitea/workflows/ssh-client-build-deploy.yaml b/.gitea/workflows/ssh-client-build-deploy.yaml index 71c45f7..5dd9d05 100644 --- a/.gitea/workflows/ssh-client-build-deploy.yaml +++ b/.gitea/workflows/ssh-client-build-deploy.yaml @@ -21,6 +21,7 @@ jobs: env: RUNNER_TEMP: "${{ runner.temp }}" WORKSPACE: "${{ gitea.workspace }}" + run: | curl -fsSL https://git.limbosolutions.com/kb/gitea/raw/branch/main/cloud-scripts/setup-limbo-actions.sh | bash 2>&1