fix: remove unnecessary build path normalization and output steps
Some checks failed
Build Release / build (Linux/X11) (pull_request) Failing after 2m37s
Build Release / build (Web) (pull_request) Failing after 2m36s
Build Release / build (Windows) (pull_request) Failing after 2m22s

This commit is contained in:
2026-03-16 22:55:21 +01:00
parent 2c3b9e458d
commit c287fd8404

View File

@@ -61,20 +61,11 @@ jobs:
BLENDER_VERSION: "5.0.0"
VERBOSE_IMPORT: "false"
- name: Show raw build output
run: echo "Raw build path ${{ steps.build.outputs.build }}"
- name: Normalize build path
run: |
NORMALIZED_PATH=$(realpath -s "${{ steps.build.outputs.build }}")
echo "Normalized build path: $NORMALIZED_PATH"
echo "BUILD_PATH=$NORMALIZED_PATH" >> $GITHUB_ENV
- name: Upload builds
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.preset }}-build
path: ${{ env.BUILD_PATH }}
path: ${{ steps.build.outputs.build }}
- name: Create Release
uses: akkuman/gitea-release-action@v1
@@ -84,4 +75,4 @@ jobs:
name: "${{ steps.changelog.outputs.version }}"
body: ${{ steps.changelog.outputs.body }}
draft: false
token: ${{ secrets.GITEA_TOKEN }}path: ${{ steps.build.outputs.build }}
token: ${{ secrets.GITEA_TOKEN }}