Skip to content

Commit 41914da

Browse files
committed
Revert "Handle no changes in package update workflow"
This reverts commit ef91ef3.
1 parent ef91ef3 commit 41914da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-unity-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
git checkout unity-package
3838
git add Packages
39-
if git diff --cached --quiet; then echo "No changes to commit"; else git commit --amend --no-edit; fi
39+
git commit --amend --no-edit
4040
4141
- name: Create LFS file list
4242
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
@@ -73,5 +73,5 @@ jobs:
7373
- name: Commit and push changes
7474
run: |
7575
git add Packages
76-
if git diff --cached --quiet; then echo "No changes to commit"; else git commit --amend --no-edit; fi
76+
git commit --amend --no-edit
7777
git push

0 commit comments

Comments
 (0)