test
Build and Push Docker Image / build-and-push (push) Failing after 5s Details

This commit is contained in:
Nicolas CARON 2024-03-20 11:42:44 +01:00
parent 71a6df958e
commit 531ff72b9e
1 changed files with 7 additions and 4 deletions

View File

@ -8,13 +8,16 @@ on:
jobs: jobs:
build-and-push: build-and-push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: gcr.io/kaniko-project/executor:latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Kaniko
run: |
mkdir -p /kaniko && \
curl -L https://github.com/GoogleContainerTools/kaniko/releases/download/v1.21.1/kaniko-v1.21.1.tar.gz | tar xz -C /kaniko && \
chmod +x /kaniko/executor
- name: Build and Push Docker Image - name: Build and Push Docker Image
run: | run: |