From eb293c1ebf5eb9b63e084005625854060ea5de25 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Mon, 13 Sep 2021 21:26:49 +0200 Subject: [PATCH] Preparation for multistage builds --- .github/workflows/build_images.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_images.yml b/.github/workflows/build_images.yml index f728851e3..cef3dc294 100644 --- a/.github/workflows/build_images.yml +++ b/.github/workflows/build_images.yml @@ -155,12 +155,15 @@ jobs: - name: Image digest run: | echo ${{ steps.docker_build.outputs.digest }} + pwd + mkdir base_build/ echo "${{ steps.docker_build.outputs.digest }}" > base_build/${{ matrix.build }}_${{ matrix.os }} - uses: actions/upload-artifact@v2 with: - name: my-artifact + name: ${{ matrix.build }}_${{ matrix.os }} path: base_build/${{ matrix.build }}_${{ matrix.os }} + if-no-files-found: error build_base_database: timeout-minutes: 70 @@ -276,7 +279,7 @@ jobs: - uses: actions/download-artifact@v2 with: - name: my-artifact + name: ${{ matrix.build }}_${{ matrix.os }} path: base_build - name: Display structure of downloaded files