-
-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #822 from hovancik/release
Release 1.4
- Loading branch information
Showing
11 changed files
with
249 additions
and
145 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
kind: pipeline | ||
type: docker | ||
name: amd64 Linux Build | ||
|
||
platform: | ||
os: linux | ||
arch: amd64 | ||
|
||
steps: | ||
- name: Build | ||
image: amd64/node:12.18.3-buster | ||
commands: | ||
- apt update && apt-get install --no-install-recommends -y gcc-multilib g++-multilib bsdtar rpm libopenjp2-tools | ||
- npm install | ||
- npm install npm -g | ||
- node_modules/.bin/electron-builder build --x64 --ia32 | ||
environment: | ||
GH_TOKEN: | ||
from_secret: GH_TOKEN | ||
|
||
trigger: | ||
branch: | ||
- release | ||
event: | ||
- push | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: arm64v8 Linux Build | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
steps: | ||
- name: Build | ||
image: arm64v8/node:12.18.3-buster | ||
commands: | ||
- apt update && apt-get install --no-install-recommends -y ruby-full bsdtar rpm libopenjp2-tools | ||
- gem install fpm -v 1.10.1 | ||
- export USE_SYSTEM_FPM="true" | ||
- npm install | ||
- npm install npm -g | ||
- node_modules/.bin/electron-builder build --arm64 | ||
environment: | ||
GH_TOKEN: | ||
from_secret: GH_TOKEN | ||
|
||
trigger: | ||
branch: | ||
- release | ||
event: | ||
- push | ||
|
||
--- | ||
kind: pipeline | ||
type: docker | ||
name: arm32v7 Linux Build | ||
|
||
platform: | ||
os: linux | ||
arch: arm | ||
|
||
steps: | ||
- name: Build | ||
image: arm32v7/node:12.18.3-buster | ||
commands: | ||
- apt update && apt-get install --no-install-recommends -y ruby-full bsdtar rpm libopenjp2-tools | ||
- gem install fpm -v 1.10.1 | ||
- export USE_SYSTEM_FPM="true" | ||
- npm install | ||
- npm install npm -g | ||
- node_modules/.bin/electron-builder build --armv7l | ||
environment: | ||
GH_TOKEN: | ||
from_secret: GH_TOKEN | ||
|
||
trigger: | ||
branch: | ||
- release | ||
event: | ||
- push |
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,21 @@ | ||
name: macOS build | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.18.3' | ||
- run: npm install | ||
- run: npm install npm -g | ||
- run: node_modules/.bin/electron-builder build | ||
env: | ||
GH_TOKEN: ${{ secrets.github_token }} |
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,21 @@ | ||
name: Linux Snap build | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12.18.3' | ||
- run: npm install -g npm | ||
- run: npm install | ||
- run: node_modules/.bin/electron-builder --linux snap -c.snap.publish=github | ||
env: | ||
GH_TOKEN: ${{ secrets.github_token }} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.