Skip to content

Commit

Permalink
better automated builder
Browse files Browse the repository at this point in the history
  • Loading branch information
ialbert committed Apr 15, 2024
1 parent 55ce833 commit fa799e5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit fa799e5

Please sign in to comment.