Skip to content

Commit f90c04a

Browse files
ci: removed if before commit
1 parent 9cdd913 commit f90c04a

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,8 @@ jobs:
6666

6767
- name: Commit and Push
6868
run: |
69-
if [ $(git status dist --porcelain=v1 2>/dev/null | wc -l) != "0" ] ; then
70-
git config user.name "GitHub Actions"
71-
git config user.email [email protected]
72-
git add .
73-
git commit -m "chore: updated build"
74-
git push origin HEAD --force
75-
fi
69+
git config user.name "GitHub Actions"
70+
git config user.email [email protected]
71+
git add .
72+
git commit -m "chore: updated build"
73+
git push origin HEAD --force

0 commit comments

Comments
 (0)