Skip to content

Commit e47e75a

Browse files
committed
feat: Allow empty commit to avoid workflow error
1 parent b6750d2 commit e47e75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
sed -i -e "s/^\:project-version\:\ .*/:project-version: ${{ inputs.version }}/g" README.adoc
9090
git config --global user.email "${{ secrets.COMMIT_EMAIL }}"
9191
git config --global user.name "Julien Ruaux"
92-
git commit -a -m "Releasing version ${{ inputs.version }}"
92+
git commit --allow-empty -a -m "Releasing version ${{ inputs.version }}"
9393
git push origin ${{ inputs.branch }}
9494
9595
- name: Build

0 commit comments

Comments
 (0)