Split binary uploading
All checks were successful
Stage / build (push) Successful in 18s
Stage / package (push) Successful in 27s

This commit is contained in:
Ethan Lane 2025-01-14 18:37:46 +00:00
parent 2a20e8c964
commit 0b165f4945
2 changed files with 14 additions and 4 deletions

View file

@ -32,10 +32,15 @@ jobs:
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn package
- name: Upload Binary
- name: Upload Linux Binary
uses: actions/upload-artifact@v3
with:
path: bin/
path: bin/random-bunny-linux
if-no-files-found: error
- name: Upload Windows Binary
uses: actions/upload-artifact@v3
with:
path: bin/random-bunny-win.exe
if-no-files-found: error
publish:

View file

@ -34,8 +34,13 @@ jobs:
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn package
- name: Upload Binary
- name: Upload Linux Binary
uses: actions/upload-artifact@v3
with:
path: bin/
path: bin/random-bunny-linux
if-no-files-found: error
- name: Upload Windows Binary
uses: actions/upload-artifact@v3
with:
path: bin/random-bunny-win.exe
if-no-files-found: error