Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-demicev committed Oct 3, 2023
1 parent 99b669d commit 34241f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/image-digest.sh
Original file line number Diff line number Diff line change
@@ -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=()
Expand Down

0 comments on commit 34241f6

Please sign in to comment.