修正 Gitea 发布工作流中的 API 请求路径,确保使用正确的仓库引用

This commit is contained in:
远野千束 2025-04-29 00:37:24 +08:00
parent 748751165c
commit 589e4f8a06

View File

@ -21,14 +21,14 @@ jobs:
GITEA_API_URL: https://git.liteyuki.icu/api/v1 # 替换为你的 Gitea API 地址
run: |
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
curl -X POST "$GITEA_API_URL/repos/<owner>/<repo>/releases" \
curl -X POST "$GITEA_API_URL/repos/${{ github.repository }}/releases" \
-H "Authorization: token $GITEA_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"tag_name": "'"$TAG_NAME"'",
"target_commitish": "main",
"name": "'"$TAG_NAME"'",
"body": "'"${{ steps.changelog.outputs.changelog }}"'",
"body": "'"waiting..."'",
"draft": false,
"prerelease": false
}'