We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3940035 commit 77dd50bCopy full SHA for 77dd50b
.github/workflows/build-image.yaml
@@ -15,8 +15,6 @@ permissions:
15
16
env:
17
REGISTRY: ghcr.io
18
- IMAGE_TAG: ${{ steps.meta.outputs.tags && steps.meta.outputs.tags.split('\n')[0]
19
- }}
20
21
jobs:
22
docker:
@@ -82,7 +80,7 @@ jobs:
82
80
- name: Test tools image
83
81
if: matrix.dockerfile == 'Dockerfile.tools' && github.event_name != 'schedule'
84
85
- IMAGE_TAG: ${{ steps.meta.outputs.tags }}
+ IMAGE_TAG: ${{ steps.meta.outputs.tags.split('\n')[0] }}
86
run: |
87
echo "Testing tools image: $IMAGE_TAG"
88
docker run --rm "$IMAGE_TAG" terraform --version
0 commit comments