Skip to content

Instantly share code, notes, and snippets.

@itsdouges
Created January 4, 2025 22:26
Show Gist options
  • Save itsdouges/943b97c46d36dc94aa426e3292170acb to your computer and use it in GitHub Desktop.
Save itsdouges/943b97c46d36dc94aa426e3292170acb to your computer and use it in GitHub Desktop.
appId: dev.triplex.app
asar: false
copyright: Copyright © 2023 - Present Michael Dougall
directories:
output: targets
extraMetadata:
main: ./dist/main.js
files:
- dist
- "!**/@triplex/**/src"
mac:
category: public.app-category.developer-tools
hardenedRuntime: true
entitlements: ./build/entitlements.mac.plist
notarize:
teamId: (omitted)
linux:
executableName: triplex-electron
artifactName: "${productName}-${version}-${arch}.${ext}"
target: AppImage
publish:
- github
name: Electron
on:
push:
branches:
- main
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
release:
timeout-minutes: 20
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Check for changesets
continue-on-error: true
run: "bash ./scripts/check-changesets.sh"
id: check
shell: bash
- name: Setup pnpm
uses: pnpm/action-setup@v2
if: steps.check.outcome == 'success'
- name: Setup node
uses: actions/setup-node@v4
if: steps.check.outcome == 'success'
with:
node-version-file: "package.json"
- name: Setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
if: steps.check.outcome == 'success'
- name: Install dependencies
run: pnpm i
if: steps.check.outcome == 'success'
- name: Release targets
run: cross-env USE_HARD_LINKS=false electron-builder --mac zip:x64 zip:arm64 dmg:x64 dmg:arm64 --win nsis:x64 nsis:ia32 --linux AppImage:x64 AppImage:arm64 --publish always
if: steps.check.outcome == 'success'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment