-
Notifications
You must be signed in to change notification settings - Fork 2
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
545e95e
commit 545b5e0
Showing
5 changed files
with
97 additions
and
6 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,91 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
# testing-only - remove this before merge | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
inputs: | ||
debug_enabled: | ||
type: boolean | ||
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | ||
required: false | ||
default: false | ||
|
||
jobs: | ||
publish: | ||
name: Main on ${{ matrix.os }}, .Net ${{ matrix.dotnet_version }}, node ${{ matrix.node_version }} | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
dotnet_version: [7.0.x] | ||
node_version: [18.x] | ||
|
||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{matrix.dotnet_version}} | ||
|
||
- name: Install Node and NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
cache: npm | ||
|
||
- name: Install and build | ||
run: | | ||
npm install | ||
npm run build | ||
- name: Install DMG license | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: npm install dmg-license | ||
|
||
- name: dotnet build - MacOS and Windows | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: | | ||
npm run build:data-release:windows | ||
npm run build:data-release:macos | ||
- name: dotnet build - Linux | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: npm run build:data-release:linux | ||
|
||
- name: Publish releases - Windows and MacOS | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
env: | ||
# These values are used for auto updates signing | ||
# APPLE_ID: ${{ secrets.APPLE_ID }} | ||
# APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }} | ||
# CSC_LINK: ${{ secrets.CSC_LINK }} | ||
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} | ||
# This is used for uploading release assets to github | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
npm exec electron-builder -- --publish never --win --mac | ||
- name: Publish releases - Linux | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
env: | ||
# no hardlinks so dependencies are copied | ||
USE_HARD_LINKS: false | ||
# This is used for uploading release assets to github | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
npm exec electron-builder -- --publish never --linux | ||
# Enable tmate debugging of manually-triggered workflows if the input option was provided | ||
- name: Setup tmate session | ||
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | ||
uses: mxschmitt/action-tmate@v3 | ||
with: | ||
limit-access-to-actor: true |
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
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