Skip to content

Style Upgrades (Part 1) #1470

Style Upgrades (Part 1)

Style Upgrades (Part 1) #1470

Workflow file for this run

name: integration
on: pull_request
jobs:
build-fms-file-explorer-electron:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@main
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@main
with:
node-version: 16
- name: Build/release Electron app
uses: AllenCellSoftware/action-electron-builder@fms-file-explorer
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
package_root: "packages/desktop"
release: false # Never release on an integration build
windows_certs: ${{ secrets.CSC_LINK }}
windows_certs_password: ${{ secrets.CSC_KEY_PASSWORD }}