Publish #36
Workflow file for this run
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
name: Publish | |
on: | |
push: | |
branches: [release/*] | |
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: Release on ${{ matrix.os }}, .Net ${{ matrix.dotnet_version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
dotnet_version: [8.0.x] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v4 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet_version }} | |
- name: Read package.json | |
id: package_json | |
uses: zoexx/github-action-json-file-properties@1.0.6 | |
with: | |
file_path: 'package.json' | |
- name: Install Node and NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ fromJson(steps.package_json.outputs.volta).node }} | |
cache: npm | |
- name: Install and build | |
run: | | |
npm install | |
npm run build | |
- name: Publish releases - Windows | |
# If the branch is labeled as a release version (e.g. "release/v1.2.3"), | |
if: ${{ matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/heads/release/v') && contains(github.ref, '.') }} | |
env: | |
# This is used for uploading release assets to github | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npm exec electron-builder -- --publish always --win | |
- name: Publish releases - macOS | |
# If the branch is labeled as a release version (e.g. "release/v1.2.3"), | |
if: ${{ matrix.os == 'macos-latest' && startsWith(github.ref, 'refs/heads/release/v') && contains(github.ref, '.') }} | |
env: | |
# These values are used for auto updates signing | |
# APPLE_ID: ${{ secrets.APPLE_ID }} | |
# APPLE_APP_SPECIFIC_PASSWORD: ${{ 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 always --mac | |
- name: Publish releases - Linux | |
# If the branch is labeled as a release version (e.g. "release/v1.2.3"), | |
if: ${{ matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/heads/release/v') && contains(github.ref, '.') }} | |
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 always --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 |