feat: test force build
All checks were successful
push / build (push) Successful in 2m10s

This commit is contained in:
张泊明518370910136 2024-09-30 05:50:41 -04:00
parent 5095db99a3
commit 20c18568bf
GPG Key ID: CA088E6D9284F870

View File

@ -30,7 +30,7 @@ jobs:
- name: Determine build command - name: Determine build command
id: build_command id: build_command
run: | run: |
if [ "${{ github.event.head_commit.message }}" == *"force build"* ]; then if echo "${{ github.event.head_commit.message }}" | grep -q "force build"; then
echo "build_command=make force-build" >> $GITHUB_ENV echo "build_command=make force-build" >> $GITHUB_ENV
else else
echo "build_command=make build" >> $GITHUB_ENV echo "build_command=make build" >> $GITHUB_ENV