Skip to content

Commit

Permalink
Separate uploads for UNIX and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Feb 14, 2024
1 parent 64f4809 commit 131d232
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ jobs:
- run: bare-dev configure
- run: bare-dev build
- uses: actions/upload-artifact@v4
if: ${{ matrix.name == "linux-x64" || matrix.name == "darwin-x64" || matrix.name == "darwin-arm64" }}
with:
name: ${{ matrix.name }}
path: build/bin/bare
- uses: actions/upload-artifact@v4
if: ${{ matrix.name == "win32-x64" }}
with:
name: ${{ matrix.name }}
path: |
build/bin/bare
build/bin/Release/bare.exe
build/bin/Release/bare.lib

0 comments on commit 131d232

Please sign in to comment.