Release v1.0.8
All checks were successful
自动版本发布 / AutoRelease (push) Successful in 1m8s

This commit is contained in:
iorebuild 2025-04-10 21:59:39 +08:00
parent 894da51993
commit c040c73451

View File

@ -91,12 +91,15 @@ jobs:
fi fi
echo "previous_tag=$PREVIOUS_TAG" >> $GITHUB_OUTPUT echo "previous_tag=$PREVIOUS_TAG" >> $GITHUB_OUTPUT
- name: 创建Gitea发布 - name: 获取提交记录
id: get-commit-log id: get-commit-log
uses: https://gitea.com/actions/gitea-release-action@main
run: | run: |
COMMIT_LOG=$(git log ${{ steps.get-previous-tag.outputs.previous_tag }}..HEAD --pretty=format:"- %s (%h)" | tr '\n' '\r') COMMIT_LOG=$(git log ${{ steps.get-previous-tag.outputs.previous_tag }}..HEAD --pretty=format:"- %s (%h)" | tr '\n' '\r')
echo "commit_log=$COMMIT_LOG"
echo "commit_log=$COMMIT_LOG" >> $GITHUB_OUTPUT echo "commit_log=$COMMIT_LOG" >> $GITHUB_OUTPUT
- name: 创建Gitea发布
uses: https://gitea.com/actions/gitea-release-action@main
with: with:
gitea_token: ${{ secrets.AUTOGENERATE }} gitea_token: ${{ secrets.AUTOGENERATE }}
gitea_instance_url: ${{ github.server_url }} gitea_instance_url: ${{ github.server_url }}