Skip to content

chore(deps-dev): bump electron from 22.3.15 to 25.2.0 #11

chore(deps-dev): bump electron from 22.3.15 to 25.2.0

chore(deps-dev): bump electron from 22.3.15 to 25.2.0 #11

Workflow file for this run

name: Build/release
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
release:
runs-on: ${{ matrix.os }}
# Platforms to build on/for
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
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: 18
- name: Build/release Electron app
uses: motrixapp/action-electron-builder@v2
with:
build_script_name: 'build:github'
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# macOS code signing certificate
mac_certs: ${{ secrets.mac_certs }}
mac_certs_password: ${{ secrets.mac_certs_password }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ vars.skip_publish != 'true' }}
env:
# macOS notarization
TEAM_ID: ${{ secrets.team_id }}
APPLE_ID: ${{ secrets.apple_id }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.apple_app_specific_password }}