Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vlaszdunov committed Jun 2, 2024
1 parent 82a3e27 commit d2d6e65
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/Publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Expand Down

0 comments on commit d2d6e65

Please sign in to comment.