-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge https://github.com/nukeop/nuclear into master
- Loading branch information
Showing
109 changed files
with
61,277 additions
and
1,112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Release job | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: 'tag to build' | ||
required: true | ||
release_name: | ||
description: 'release name' | ||
required: true | ||
|
||
jobs: | ||
linux_release: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Use Node.js 11.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
version: 11.x | ||
- name: npm install and build | ||
run: | | ||
npm install | ||
npm run build:linux | ||
shell: bash | ||
env: | ||
GITHASH: ${{github.event.inputs.tag}} | ||
- name: Upload binaries | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: nuclear-binaries | ||
path: release/*.* | ||
|
||
windows_release: | ||
runs-on: windows-latest | ||
timeout-minutes: 20 | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Use Node.js 11.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
version: 11.x | ||
- name: npm install and build | ||
run: | | ||
npm install | ||
cd packages/app | ||
npm run build | ||
cd ../main | ||
npm run build | ||
cd ../.. | ||
npm run pack | ||
shell: bash | ||
env: | ||
GITHASH: ${{github.event.inputs.tag}} | ||
- name: Upload binaries | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: nuclear-binaries | ||
path: release/*.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.6.3" | ||
"version": "0.6.4" | ||
} |
Oops, something went wrong.