Skip to content

Commit

Permalink
build anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
Hybes committed Nov 25, 2024
1 parent a60d719 commit 9032e98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
- name: Check if package.json changed
id: check_version
run: |
git diff --name-only HEAD~1 HEAD | grep 'package.json'
if [ $? -eq 0 ]; then
if git diff --name-only HEAD~1 HEAD | findstr "package.json"; then
echo "VERSION_CHANGED=true" >> $GITHUB_ENV
else
echo "VERSION_CHANGED=false" >> $GITHUB_ENV
Expand Down

0 comments on commit 9032e98

Please sign in to comment.