Skip to content

Commit

Permalink
$ is necessary for latest_tag evaluation
Browse files Browse the repository at this point in the history
Signed-off-by: zeryx <1892175+zeryx@users.noreply.github.com>
  • Loading branch information
zeryx committed May 2, 2023
1 parent e53ac5d commit 35d6a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/runIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
base_sha=${{ github.event.pull_request.base.sha }}
special_tag=build-success-${{github.event.pull_request.number}}
# Get the list of changed files between the last commit and the current one
latest_tag=(git tag -l $special_tag | sort -V | tail -n 1)
latest_tag=$(git tag -l $special_tag | sort -V | tail -n 1)
if [ -z "$latest_tag" ]; then
echo "no previous successful build tag exists"
# If no previous successful build tag exists, check all commits
Expand Down

0 comments on commit 35d6a1c

Please sign in to comment.