modified: .gitea/actions/buildkit-build-push-dev/action.yaml
/ ssh-client-container-build-push (push) Failing after 14s

modified:   .gitea/workflows/ssh-client-build-deploy.yaml
This commit is contained in:
Márcio Fernandes
2026-05-02 12:47:04 +00:00
parent 3ba44942ff
commit 6c4bf9ce6b
2 changed files with 4 additions and 4 deletions
@@ -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)
@@ -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