Skip to content

v8.0.0

v8.0.0 #133

Workflow file for this run

name: release
on:
push:
tags:
# Match any tags that start with 'v'
- v*
jobs:
release-fms-file-explorer-desktop:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@main
with:
ref: ${{ github.event.client_payload.ref }}
- 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
env:
AMPLITUDE_API_KEY: ${{ secrets.AMPLITUDE_API_KEY }}
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: true
windows_certs: ${{ secrets.CSC_LINK }}
windows_certs_password: ${{ secrets.CSC_KEY_PASSWORD }}