Skip to content

Commit

Permalink
added correct curly braces
Browse files Browse the repository at this point in the history
Signed-off-by: zeryx <zeryx@pop-os.localdomain>
  • Loading branch information
zeryx committed May 1, 2023
1 parent 265c58a commit 24f6ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/runIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
run: |
# Get the SHA of the base commit of the PR
base_sha=${{ github.event.pull_request.base.sha }}
special_tag = "build-success-${{github.event.pull_request.number}}"
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 'build-success-$special_tag' | sort -V | tail -n 1)
latest_tag=$(git tag -l 'build-success-${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 24f6ac3

Please sign in to comment.