Skip to content

try6

try6 #301

Workflow file for this run

name: Build/release
on:
push:
branches:
- master
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 18
- name: Build/release Electron app
uses: Yan-Jobs/[email protected]
env:
# we don't have a Windows code signing certificate yet so when platform is windows we don't specify any code signing options
APPLE_TEAM_ID: ${{ matrix.os == 'macos-12' && secrets.APPLE_TEAM_ID }}
APPLE_ID: ${{ matrix.os == 'macos-12' && secrets.APPLE_ID }}
APPLE_ID_PASS: ${{ matrix.os == 'macos-12' && secrets.APPLE_ID_PASS }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ matrix.os == 'macos-12' && secrets.APPLE_ID_PASS }}
CSC_LINK: ${{ matrix.os == 'macos-12' && secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ matrix.os == 'macos-12' && secrets.CSC_KEY_PASSWORD }}
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: Upload a Build Artifact
uses: actions/[email protected]
with:
name: build
path: |
out/win-unpacked
out/linux-unpacked
out/*.dmg
out/*.AppImage
out/*.exe