Skip to content

Commit

Permalink
build: check if bundle actually changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ChecksumDev committed Jul 17, 2024
1 parent 0f2ad2f commit bbf2d9c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:
run: |
git config --global user.email "[email protected]"
git config --global user.name "BeatForge CI"
git add .
git commit -m "chore: bundle update"
git push
if [[ `git status --porcelain` ]]; then
git add .
git commit -m "chore: bundle update"
git push
else
echo "No changes detected"
fi

0 comments on commit bbf2d9c

Please sign in to comment.