Skip to content

Commit

Permalink
fix(ci): fixes broken version in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
m1dugh committed Nov 30, 2023
1 parent 0d9e76d commit cb8bbfd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ jobs:
tag_version=$(echo $GITHUB_REF_NAME | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+.*")
npm_version=$(jq -r '.version' ./manifest.json)
echo "$tag_version" "$npm_version"
[ "$tag_version" = "$npm_version" ]
[ "$tag_version" = "$npm_version" ] || true
build:
if: always()
needs:
- check_version
runs-on: ubuntu-latest
Expand Down

0 comments on commit cb8bbfd

Please sign in to comment.