Split binaries
This commit is contained in:
parent
0a4184d1ac
commit
9417045972
2 changed files with 18 additions and 6 deletions
|
@ -32,11 +32,17 @@ jobs:
|
||||||
- run: yarn install --frozen-lockfile
|
- run: yarn install --frozen-lockfile
|
||||||
- run: yarn build
|
- run: yarn build
|
||||||
- run: yarn package
|
- run: yarn package
|
||||||
- name: Upload Binary
|
- name: Upload Linux Binary
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: random-bunny-${{ github.run_id }}
|
name: random-bunny-linux
|
||||||
path: bin/
|
path: bin/random-bunny-linux
|
||||||
|
if-no-files-found: error
|
||||||
|
- name: Upload Windows Binary
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: random-bunny-win.exe
|
||||||
|
path: bin/random-bunny-win.exe
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
|
|
|
@ -34,9 +34,15 @@ jobs:
|
||||||
- run: yarn install --frozen-lockfile
|
- run: yarn install --frozen-lockfile
|
||||||
- run: yarn build
|
- run: yarn build
|
||||||
- run: yarn package
|
- run: yarn package
|
||||||
- name: Upload Binary
|
- name: Upload Linux Binary
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: random-bunny-${{ github.run_id }}
|
name: random-bunny-linux
|
||||||
path: bin/
|
path: bin/random-bunny-linux
|
||||||
|
if-no-files-found: error
|
||||||
|
- name: Upload Windows Binary
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: random-bunny-win.exe
|
||||||
|
path: bin/random-bunny-win.exe
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
Loading…
Reference in a new issue