Skip to content

Commit

Permalink
ci: fix git rev-parse
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz committed Dec 9, 2024
1 parent bff68e2 commit 8c6a62f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
if [[ -z "${{ inputs.commit }}" ]]; then
COMMIT="${{ inputs.commit }}"
else
COMMIT=git rev-parse ${{ github.sha }}^@ | grep -Fvx ${{ github.event.pull_request.head.sha }}
COMMIT=$(git rev-parse ${{ github.sha }}^@ | grep -Fvx ${{ github.event.pull_request.head.sha }})
fi
git checkout $COMMIT
Expand Down

0 comments on commit 8c6a62f

Please sign in to comment.