Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Rajpal Chauhan <[email protected]>
  • Loading branch information
rajpalc7 committed Mar 6, 2024
1 parent 234d1d6 commit 08d2f83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,10 @@ jobs:
id: extract
if: contains(fromJSON('["aries-endorser-db"]'), matrix.service)
run: |
echo "tags=$(echo '${{ steps.meta.outputs.tags }}' | grep -oE ':([^[:space:]]+)' | sed '/label/d' | sed 's/://g' | tr '\n' ' ')" >> $GITHUB_OUTPUT
echo "single_tag=$( cut -d " " -f 1 << "$tags" )" >> $GITHUB_OUTPUT
tags=$(echo "${{ steps.meta.outputs.tags }}" | grep -oE ':([^[:space:]]+)' | sed '/label/d' | sed 's/://g' | tr '\n' ' ')
single_tag=$(echo "$tags" | cut -d " " -f 1)
echo "tags=$tags" >> $GITHUB_OUTPUT
echo "single_tag=$single_tag" >> $GITHUB_OUTPUT
- name: Pull database image
if: contains(fromJSON('["aries-endorser-db"]'), matrix.service)
Expand Down

0 comments on commit 08d2f83

Please sign in to comment.