ci: use dual registry endpoints and disable fail-fast
Build and Push Docker Images / build (api) (push) Successful in 1m53s
Details
Build and Push Docker Images / build (web) (push) Successful in 2m24s
Details
Build and Push Docker Images / build (worker) (push) Successful in 8m13s
Details
Build and Push Docker Images / deploy (push) Failing after 13s
Details
Build and Push Docker Images / build (api) (push) Successful in 1m53s
Details
Build and Push Docker Images / build (web) (push) Successful in 2m24s
Details
Build and Push Docker Images / build (worker) (push) Successful in 8m13s
Details
Build and Push Docker Images / deploy (push) Failing after 13s
Details
This commit is contained in:
parent
270eeb751f
commit
bd47f1890c
|
|
@ -13,6 +13,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
component: [worker, api, web]
|
component: [worker, api, web]
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -25,7 +26,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir -p .docker
|
mkdir -p .docker
|
||||||
AUTH=$(echo -n "frankchine:${{ secrets.DOCKERHUB_TOKEN }}" | base64 | tr -d '\n')
|
AUTH=$(echo -n "frankchine:${{ secrets.DOCKERHUB_TOKEN }}" | base64 | tr -d '\n')
|
||||||
echo "{\"auths\":{\"https://index.docker.io/v1/\":{\"auth\":\"$AUTH\"}}}" > .docker/config.json
|
echo "{\"auths\":{\"https://index.docker.io/v1/\":{\"auth\":\"$AUTH\"},\"docker.io\":{\"auth\":\"$AUTH\"}}}" > .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
|
||||||
|
|
|
||||||
|
|
@ -4,3 +4,4 @@ trigger 4
|
||||||
trigger 5
|
trigger 5
|
||||||
Trigger CI with fixed auth
|
Trigger CI with fixed auth
|
||||||
Trigger CI with refined auth
|
Trigger CI with refined auth
|
||||||
|
Trigger CI with dual registry auth
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue