File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142142
143143 - name : Export digest
144144 run : |
145- : # Create a file in <tempdir>/ digests with name matching the pushed image hash
145+ : # Create a file in digests with name matching the pushed image hash
146146 mkdir digests
147147 digest="${{ steps.build.outputs.imageid }}"
148148 touch "digests/${digest#sha256:}"
Original file line number Diff line number Diff line change 4242 - name : Download digests
4343 uses : actions/download-artifact@v4
4444 with :
45- path : ${{ runner.temp }}/ digests
45+ path : digests
4646 pattern : digests_${{ inputs.target }}_*
4747 merge-multiple : true
4848
5757
5858 - name : Merge and push the per-platform images (release)
5959 if : inputs.tag_latest
60- working-directory : ${{ runner.temp }}/ digests
60+ working-directory : digests
6161 run : |
6262 docker buildx imagetools create \
6363 -t firedrakeproject/${{ inputs.target }}:${{ inputs.tag }} \
6666
6767 - name : Merge and push the per-platform images (dev)
6868 if : ${{ ! inputs.tag_latest }}
69- working-directory : ${{ runner.temp }}/ digests
69+ working-directory : digests
7070 run : |
7171 docker buildx imagetools create \
7272 -t firedrakeproject/${{ inputs.target }}:${{ inputs.tag }} \
You can’t perform that action at this time.
0 commit comments