Skip to content

Commit b990f4e

Browse files
committed
misc: Tweak more
1 parent 1f2c981 commit b990f4e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/docker-build/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
outputs:
1919
unique:
2020
description: "Unique identifier for the CI run"
21-
value: ${{ steps.uniquetag.unique }}
21+
value: ${{ steps.uniquetag.outputs.unique }}
2222

2323
runs:
2424
using: "composite"

.github/actions/docker-clean/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: "Devito"
44

55
inputs:
66
# The only supported GHA input type is string
7-
id:
7+
uid:
88
description: "Unique identifier output from docker-build action"
99
required: true
1010
tag:
@@ -18,4 +18,4 @@ runs:
1818
name: "Cleanup docker image"
1919
shell: bash
2020
run: |
21-
docker image rm -f "${{ inputs.tag }}_${{ inputs.id }}"
21+
docker image rm -f "${{ inputs.tag }}_${{ inputs.uid }}"

.github/workflows/pytest-core-mpi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,5 @@ jobs:
135135
if: always()
136136
uses: ./.github/actions/docker-clean
137137
with:
138-
id: ${{ steps.build.outputs.unique }}
138+
uid: ${{ steps.build.outputs.unique }}
139139
tag: devito_img

0 commit comments

Comments
 (0)