From 53aaf4e1217d8fc1a6a904e34c70a7f04e62a9ad Mon Sep 17 00:00:00 2001 From: Joss Whittle Date: Tue, 16 Apr 2024 02:37:27 +0100 Subject: [PATCH] fix(trino-container): Update trino-container.yaml command captured multiple lines (#110) --- .github/workflows/trino-container.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trino-container.yaml b/.github/workflows/trino-container.yaml index 0d0f424..c63cfe1 100644 --- a/.github/workflows/trino-container.yaml +++ b/.github/workflows/trino-container.yaml @@ -53,7 +53,7 @@ jobs: 'main' ] registry-extra-tag-command: >- - cat containers/trino/Dockerfile | grep ARG | cut -d "=" -f 2 + cat containers/trino/Dockerfile | grep -m 1 "ARG BASE_VERSION=" | cut -d "=" -f 2 cosign-public-key: ${{ vars.COSIGN_PUBLIC_KEY }} slack-channel: ${{ vars.SLACK_CHANNEL }} build-file: containers/trino/Dockerfile