From 8c0f4b5e951b69b62c5616b75a4fa0cfaff9ccee Mon Sep 17 00:00:00 2001 From: Erik Heeren Date: Tue, 8 Oct 2024 11:02:38 +0200 Subject: [PATCH] Don't clone again --- .github/actions/build_container/action.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/build_container/action.yaml b/.github/actions/build_container/action.yaml index 3d19637..12b4cb6 100644 --- a/.github/actions/build_container/action.yaml +++ b/.github/actions/build_container/action.yaml @@ -36,14 +36,12 @@ inputs: runs: using: composite steps: - - name: clone repo - uses: actions/checkout@v4 - name: create builder shell: bash run: |- - echo "Creating ${{ inputs.BUILD_PATH }}" + echo "Building container in ${{ inputs.BUILD_PATH }}" set -x - apt install -y awscli buildah podman + apt-get install -y awscli buildah podman export STORAGE_DRIVER=vfs # allows to build inside containers without additional mounts export BUILDAH_FORMAT=docker # enables ONBUILD instructions which are not OCI compatible export REGISTRY_IMAGE_TAG=latest # for now