feature/buid-Kaniko #1

Merged
marcio.fernandes merged 39 commits from feature/buid-Kaniko into main 2026-03-15 00:25:36 +00:00
Showing only changes of commit be722ddcbd - Show all commits

View File

@@ -18,13 +18,19 @@ jobs:
buildkitd --oci-worker-no-process-sandbox --root /tmp/buildkit &
sleep 3
- name: Login to Gitea registry
- name: Authenticate to Gitea registry
run: |
buildctl login \
--username "${{ secrets.REGISTRY_USERNAME }}" \
--password "${{ secrets.REGISTRY_PASSWORD }}" \
git.limbosolutions.com
mkdir -p ~/.docker
AUTH=$(echo -n "${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_PASSWORD }}" | base64)
cat > ~/.docker/config.json <<EOF
{
"auths": {
"git.limbosolutions.com": {
"auth": "$AUTH"
}
}
}
EOF
- name: Build and push image
run: |