File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858 needs : [ changes, container ]
5959 uses : ./.github/workflows/outputs.yml
6060 with :
61- container : ${{ needs.changes.outputs.container == 'true' }}
61+ container_artifact : ${{ needs.changes.outputs.container == 'true' }}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Generate outputs
22on :
33 workflow_call :
44 inputs :
5- container :
5+ container_artifact :
66 required : true
77 type : boolean
88
@@ -44,14 +44,14 @@ jobs:
4444 repository : ${{ github.event.pull_request.head.repo.full_name }}
4545
4646 - name : Download container if was previously created
47- if : github.event_name == 'pull_request' && inputs.container
47+ if : github.event_name == 'pull_request' && inputs.container_artifact
4848 uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
4949 with :
5050 name : tutorial-container
5151 path : /tmp
5252
5353 - name : Import container from PR artifact
54- if : github.event_name == 'pull_request' && inputs.container
54+ if : github.event_name == 'pull_request' && inputs.container_artifact
5555 run : |
5656 docker load --input /tmp/tutorial-container.tar
5757 docker image ls -a
You can’t perform that action at this time.
0 commit comments