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 1ea13d8fef - Show all commits

View File

@@ -34,15 +34,9 @@ jobs:
- name: Authenticate to Gitea registry
run: |
mkdir -p ~/.docker
AUTH=$(printf "%s" "${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_PASSWORD }}" | base64 -w 0)
AUTH=$(printf "%s" "${{ secrets.GITLIMBO_DOCKER_REGISTRY_USERNAME }}:${{ secrets.GITLIMBO_DOCKER_REGISTRY_PASSWORD }}" | base64 -w 0)
printf '{"auths":{"git.limbosolutions.com":{"auth":"%s"}}}' "$AUTH" > ~/.docker/config.json
- name: Validate auth file
run: |
cat ~/.docker/config.json
jq . ~/.docker/config.json
- name: Build and push image
run: |
buildctl \