From d5d27418d127a5e45a367aa672ffd2d36c1b00d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Gro=C3=9F?= Date: Thu, 17 Aug 2023 14:10:34 +0200 Subject: [PATCH] Fix missing extension on windows build artifacts --- .github/workflows/build.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c1e2ee..f3d0c27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - platform: [linux, windows] + platform: + - name: linux + extension: + - name : windows + extension: .exe steps: - uses: actions/checkout@v2 with: @@ -21,18 +25,18 @@ jobs: id: build uses: manleydev/build-godot-action@v1.5.0 with: - name: example - preset: ${{ matrix.platform }} + name: reno${{ matrix.platform.extension }} + preset: ${{ matrix.platform.name }} debugMode: "true" - name: Upload Build Artifact uses: actions/upload-artifact@v2 with: - name: TohoReno-${{ matrix.platform }} + name: TohoReno-${{ matrix.platform.name }} path: | ${{ github.workspace }}/${{ steps.build.outputs.build }} - name: Upload Example Config Artifact uses: actions/upload-artifact@v2 with: - name: TohoReno-${{ matrix.platform }} + name: TohoReno-${{ matrix.platform.name }} path: | ${{ github.workspace }}/example-config.cfg \ No newline at end of file