feature/new-oci-deployment #2

Merged
marcio.fernandes merged 30 commits from feature/new-oci-deployment into main 2026-05-03 01:17:48 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 6c4bf9ce6b - Show all commits
@@ -39,10 +39,9 @@ runs:
shell: bash shell: bash
run: | run: |
set -euo pipefail set -euo pipefail
echo "USERNAME RAW: ${{ inputs.registry_username }}"
echo "PASSWORD RAW: ${{ inputs.registry_password }}" USER='${{ inputs.registry_username }}'
USER="${{ inputs.registry_username }}" PASS='${{ inputs.registry_password }}'
PASS="${{ inputs.registry_password }}"
AUTH_INLINE=$(printf '%s:%s' "$USER" "$PASS" | base64 -w0) AUTH_INLINE=$(printf '%s:%s' "$USER" "$PASS" | base64 -w0)
@@ -21,6 +21,7 @@ jobs:
env: env:
RUNNER_TEMP: "${{ runner.temp }}" RUNNER_TEMP: "${{ runner.temp }}"
WORKSPACE: "${{ gitea.workspace }}" WORKSPACE: "${{ gitea.workspace }}"
run: | run: |
curl -fsSL https://git.limbosolutions.com/kb/gitea/raw/branch/main/cloud-scripts/setup-limbo-actions.sh | bash 2>&1 curl -fsSL https://git.limbosolutions.com/kb/gitea/raw/branch/main/cloud-scripts/setup-limbo-actions.sh | bash 2>&1