-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c6c818
commit 6f15c22
Showing
3 changed files
with
120 additions
and
40 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 |
---|---|---|
|
@@ -2,6 +2,9 @@ name: Build/release | |
|
||
on: [push, pull_request] | ||
|
||
env: | ||
GH_TOKEN: ${{ SECRETS.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
release: | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -20,25 +23,39 @@ jobs: | |
with: | ||
node-version: 20 | ||
|
||
- name: Install Snapcraft | ||
uses: samuelmeuli/action-snapcraft@v1 | ||
# Only install Snapcraft on Ubuntu | ||
if: startsWith(matrix.os, 'ubuntu') | ||
with: | ||
# Log in to Snap Store | ||
snapcraft_token: ${{ secrets.snapcraft_token }} | ||
- name: Build | ||
run: yarn --link-duplicates --pure-lockfile | ||
|
||
- name: Install libarchive-tools for pacman build # Related https://github.com/electron-userland/electron-builder/issues/4181 | ||
if: startsWith(matrix.os, 'ubuntu') | ||
run: sudo apt-get install libarchive-tools | ||
|
||
- name: Build/release Electron app | ||
uses: coparse-inc/[email protected] | ||
with: | ||
# GitHub token, automatically provided to the action | ||
# (No need to define this secret in the repo settings) | ||
github_token: ${{ secrets.github_token }} | ||
|
||
# If the commit is tagged with a version (e.g. "v1.0.0"), | ||
# release the app after building | ||
release: ${{ startsWith(github.ref, 'refs/tags/v') }} | ||
- name: Release linux x64 | ||
if: | | ||
contains(github.ref, 'main') && | ||
startsWith(matrix.os, 'ubuntu') | ||
run: yarn dist:linux:x64 -- --publish always | ||
|
||
- name: Release linux arm64 | ||
if: | | ||
contains(github.ref, 'main') && | ||
startsWith(matrix.os, 'ubuntu') | ||
run: yarn dist:linux:arm64 -- --publish always | ||
|
||
- name: Release linux arm | ||
if: | | ||
contains(github.ref, 'main') && | ||
startsWith(matrix.os, 'ubuntu') | ||
run: yarn dist:linux:arm -- --publish always | ||
|
||
- name: Release macos | ||
if: | | ||
contains(github.ref, 'main') && | ||
startsWith(matrix.os, 'macos') | ||
run: yarn dist:mac -- --publish always | ||
|
||
- name: Release windows | ||
if: | | ||
contains(github.ref, 'main') && | ||
startsWith(matrix.os, 'windows') | ||
run: yarn dist:windows -- --publish always |
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,59 @@ | ||
name: Build/release for Snap | ||
|
||
on: push | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
|
||
snap: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Build | ||
run: yarn --link-duplicates --pure-lockfile | ||
|
||
- name: Install Snapcraft | ||
uses: samuelmeuli/action-snapcraft@v2 | ||
|
||
- name: Release | ||
if: contains(github.ref, 'main') | ||
run: yarn dist:linux:snap --publish always | ||
|
||
snap-armv7l: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Build | ||
run: yarn --link-duplicates --pure-lockfile | ||
|
||
- name: Install Snapcraft | ||
uses: samuelmeuli/action-snapcraft@v2 | ||
|
||
- name: Release | ||
if: contains(github.ref, 'main') | ||
run: yarn dist:linux:snap:armv7l --publish always |
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