From d2d6e657b2a02bc45909ff619e5159a6f7052cf1 Mon Sep 17 00:00:00 2001 From: vlaszdunov Date: Sun, 2 Jun 2024 15:28:33 +0300 Subject: [PATCH] update workflow --- .github/workflows/Publisher.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/Publisher.yml b/.github/workflows/Publisher.yml index 5d53081..d54dc8c 100644 --- a/.github/workflows/Publisher.yml +++ b/.github/workflows/Publisher.yml @@ -44,6 +44,11 @@ jobs: with: cmd: ls Python_dockerfiles separator: newline + - name: 'Upload Artifact' + uses: actions/upload-artifact@v4 + with: + name: Generated_Dockerfiles + path: /Python_dockerfiles outputs: param: ${{ steps.array.outputs.build }} @@ -54,6 +59,10 @@ jobs: matrix: param: ${{ fromJson(needs.setup.outputs.param) }} steps: + - name: Download a single artifact + uses: actions/download-artifact@v4 + with: + name: Generated_Dockerfiles - run: | echo ${{ matrix.param }} docker build --tag ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{github.job}} /Python_dockerfiles