From 34241f6d22f14541bb1c0e8766f5b09c5f03424b Mon Sep 17 00:00:00 2001 From: Alexandr Demicev Date: Tue, 3 Oct 2023 15:11:36 +0200 Subject: [PATCH] test --- .github/workflows/release.yaml | 2 +- scripts/image-digest.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b84083586..89a76bdbc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -48,7 +48,7 @@ jobs: - name: Store list of ghcr images id: ghcr-images run: | - output=$(./scripts/images-digest.sh ${{ env.TAG }} ${{ env.REGISTRY }}) + output=$(./scripts/image-digest.sh ${{ env.REGISTRY }} ${{ env.PROD_ORG }} ${{ env.TAG }}) echo "ghcr-images=$result" >> "$GITHUB_OUTPUT" ghcr-sign: runs-on: ubuntu-latest diff --git a/scripts/image-digest.sh b/scripts/image-digest.sh index 792744af9..f406b0f21 100755 --- a/scripts/image-digest.sh +++ b/scripts/image-digest.sh @@ -1,7 +1,7 @@ #!/bin/bash # Run your command and capture its output -output=$(make docker-list-all TAG="$1" REGISTRY="$2") +output=$(make docker-list-all REGISTRY="$1" ORG="$2" TAG="$3") # Initialize an empty array to store the results results=()