From fa799e5b222806999627be86c106a9c1d52094a2 Mon Sep 17 00:00:00 2001 From: Istvan Albert Date: Mon, 15 Apr 2024 12:40:57 -0400 Subject: [PATCH] better automated builder --- .github/workflows/release-builder.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-builder.yml b/.github/workflows/release-builder.yml index f09f228..e93e7e6 100644 --- a/.github/workflows/release-builder.yml +++ b/.github/workflows/release-builder.yml @@ -18,10 +18,15 @@ jobs: include: - os: ubuntu-latest artifact-name: "Linux" + artifact-suffix: "" + - os: windows-latest - artifact-name: "Windows.exe" + artifact-name: "Windows" + artifact-suffix: ".exe" + - os: macos-latest artifact-name: "MacOS" + artifact-suffix: "" steps: - uses: actions/checkout@v4 @@ -47,4 +52,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: GeneScape-${{ env.VERSION }}-${{ matrix.artifact-name }} - path: dist/GeneScape-${{ matrix.artifact-name }} + path: dist/GeneScape-${{ env.VERSION }}-${{ matrix.artifact-name }}.zip