ci: definitive fixes for docker auth, kaniko memory, and deploy port

This commit is contained in:
fchinembiri 2026-05-08 19:11:58 +02:00
parent e3a2efb673
commit 1a0111e4e7
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ jobs:
- name: Set up Docker config - name: Set up Docker config
run: | run: |
mkdir -p .docker mkdir -p .docker
echo "{\"auths\":{\"https://index.docker.io/v1/\":{\"auth\":\"$(echo -n \"frankchine:${{ secrets.DOCKERHUB_TOKEN }}\" | base64 | tr -d '\n')\"}}}" > .docker/config.json echo "{\"auths\":{\"https://index.docker.io/v1/\":{\"auth\":\"$(echo -n \"${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_PASSWORD }}\" | base64 | tr -d '\n')\"}}}" > .docker/config.json
- name: Build and Push with Kaniko - name: Build and Push with Kaniko
uses: docker://gcr.io/kaniko-project/executor:debug uses: docker://gcr.io/kaniko-project/executor:debug