Skip to content

Commit

Permalink
Merge pull request #58 from jamshale/release
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
jamshale authored Apr 16, 2024
2 parents c753b5f + e7997ea commit 5870396
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
git remote set-url --push origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/jamshale/aries-acapy-plugins
git fetch --all
tag_output=(git tag -n0 "*$version*")
tag_output=$(git tag -n0 "*$version*")
echo "Tag output: $tag_output"
echo "Tag output: \n ${tag_output}"
tags=0
for item in "${tag_output[@]}"; do
for item in "${tag_output}"; do
tags=$((tags+1))
done
Expand Down

0 comments on commit 5870396

Please sign in to comment.