Skip to content

Commit

Permalink
Fix missing extension on windows build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
JanGross committed Aug 17, 2023
1 parent 401dda3 commit 7d28fe0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -21,7 +25,7 @@ jobs:
id: build
uses: manleydev/build-godot-action@v1.5.0
with:
name: example
name: reno${{ matrix.platform.extension }}
preset: ${{ matrix.platform }}
debugMode: "true"
- name: Upload Build Artifact
Expand Down

0 comments on commit 7d28fe0

Please sign in to comment.