ci: use gitea.xxx
Some checks failed
push / build (push) Has been cancelled

This commit is contained in:
张泊明518370910136 2025-06-05 06:31:39 -04:00
parent 350fd462a7
commit 47aa87e084
GPG Key ID: CA088E6D9284F870

View File

@ -26,10 +26,10 @@ jobs:
- name: Determine build command
id: build_command
run: |
if echo "${{ github.event.head_commit.message }}" | grep -q "force build"; then
echo "build_command=make force-build" >> $GITHUB_ENV
if echo "${{ gitea.event.head_commit.message }}" | grep -q "force build"; then
echo "build_command=make force-build" >> $GITEA_ENV
else
echo "build_command=make build" >> $GITHUB_ENV
echo "build_command=make build" >> $GITEA_ENV
fi
- name: Build
env: