fix: correct formatting for release action parameters in workflow
Some checks failed
Build Release / build (Linux/X11) (pull_request) Failing after 2m27s
Build Release / build (Web) (pull_request) Failing after 2m36s
Build Release / build (Windows) (pull_request) Failing after 2m17s

This commit is contained in:
2026-03-16 22:19:57 +01:00
parent 3aa520203e
commit 751a3b1a17

View File

@@ -57,11 +57,11 @@ jobs:
- name: Create Release
uses: akkuman/gitea-release-action@v1
with:
server_url: ${{ vars.SERVER_URL }}
tag_name: ${{ steps.changelog.outputs.version | replace('## ', '') | replace('[','') | replace(']','') | replace(' ', '-') }}
name: "Release ${{ steps.changelog.outputs.version | replace('## ', '') | replace('[','') | replace(']','') }}"
body: ${{ steps.changelog.outputs.description }}
server_url: ${{ vars.SERVER_URL }}
tag_name: "${{ steps.changelog.outputs.version }}"
name: "Release ${{ steps.changelog.outputs.version }}"
body: "${{ steps.changelog.outputs.description }}"
files: |
godot-${{ matrix.preset }}-v${{ steps.changelog.outputs.version }}
draft: false
draft: false
token: ${{ secrets.GITEA_TOKEN }}