Skip to content

Commit 8653110

Browse files
authored
Merge pull request #23 from dmurphy18/cleanup_release_4
Attempting to allow multiple releases in a day with same sha256sums
2 parents 6bd9cb3 + b933e86 commit 8653110

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
sha256sum windows/svtminion.ps1 | awk '{ print $1 }' > svtminion.ps1.sha256
153153
git add svtminion.sh.sha256
154154
git add svtminion.ps1.sha256
155-
git commit -am "Update sha256 checksums" || git commit -am "Update sha256 checksums"
155+
git commit --allow-empty -am "Update sha256 checksums" || git commit --allow-empty -am "Update sha256 checksums"
156156
157157
- name: Tag The ${{ needs.update-main.outputs.release-version }} Release
158158
run: |
@@ -228,8 +228,8 @@ jobs:
228228
229229
- name: Commit Changes
230230
run: |
231-
git commit -am "Update README.md with ${{ env.VMTS_VERSION }} release sha256sum" || \
232-
git commit -am "Update README.md with ${{ env.VMTS_VERSION }} release sha256sum"
231+
git commit --allow-empty -am "Update README.md with ${{ env.VMTS_VERSION }} release sha256sum" || \
232+
git commit --allow-empty -am "Update README.md with ${{ env.VMTS_VERSION }} release sha256sum"
233233
234234
- name: Push Changes
235235
uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839

0 commit comments

Comments
 (0)