Skip to content

Commit 7e4d5c3

Browse files
committed
Stop using runner.temp throughout
1 parent d93ad16 commit 7e4d5c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:}"

.github/workflows/docker_merge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
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

@@ -57,7 +57,7 @@ jobs:
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 }} \
@@ -66,7 +66,7 @@ jobs:
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 }} \

0 commit comments

Comments
 (0)