From 9c567365adb89ca64537377991ce26b345f2c5a2 Mon Sep 17 00:00:00 2001 From: a3510377 Date: Mon, 19 Feb 2024 21:34:43 +0800 Subject: [PATCH] fix build script push commit value --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ba5afe9..341a227 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -39,7 +39,7 @@ jobs: git add -A if [[ `git status --porcelain` ]]; then - git commit -m "${{ github.event.head_commit.message }}" + git commit -m "Update release files" git push -f https://_:"$token"@$repository "$ref_name":"$ref_name" fi shell: bash