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