Skip to content

Commit

Permalink
fix search path for sed
Browse files Browse the repository at this point in the history
  • Loading branch information
pschicho committed Oct 24, 2024
1 parent ddf618d commit 2d0c11f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- name: Check if WallGoMatrixVersion matches GitHub tag
run: |
WallGoMatrixVersion=$(sed -n 's/WallGoMatrix`\$WallGoMatrixVersion = "\(.*\)";/\1/p' WallGoMatrix.m)
WallGoMatrixVersionDate=$(sed -n 's/WallGoMatrix`\$WallGoMatrixVersionDate = "\(.*\)";/\1/p' WallGoMatrix.m)
WallGoMatrixVersion=$(sed -n 's/WallGoMatrix`\$WallGoMatrixVersion = "\(.*\)";/\1/p' src/Kernel/WallGoMatrix.m)
WallGoMatrixVersionDate=$(sed -n 's/WallGoMatrix`\$WallGoMatrixVersionDate = "\(.*\)";/\1/p' src/Kernel/WallGoMatrix.m)
if [ "$WallGoMatrixVersion" == "${{ env.tag }}" ]; then
echo "WallGoMatrixVersion matches the tag"
Expand Down

0 comments on commit 2d0c11f

Please sign in to comment.