mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
fix(artifacts.yml): only commit changes if there are any to avoid unnecessary commits
The previous commit message was updated to only commit changes if there are any. This is done to avoid unnecessary commits when there are no changes in the artifacts.
This commit is contained in:
2
.github/workflows/artifacts.yml
vendored
2
.github/workflows/artifacts.yml
vendored
@@ -73,5 +73,5 @@ jobs:
|
||||
pnpm run build
|
||||
git config --global user.email "noreply@github.com"
|
||||
git config --global user.name "CI"
|
||||
git add -A && git commit -m "build: update bundled artifacts [skip ci]"
|
||||
git diff --quiet || (git add -A && git commit -m "build: update bundled artifacts [skip ci]")
|
||||
git push
|
||||
|
||||
Reference in New Issue
Block a user