Skip to content

Release Desktop App #61

Release Desktop App

Release Desktop App #61

name: Release Desktop App
on:
workflow_dispatch:
inputs:
build_type:
description: "Build Type"
required: true
type: choice
options:
- ubuntu-latest
- windows-latest
- macos-latest
default: windows-latest
jobs:
release:
env:
EP_GH_IGNORE_TIME: true
APPLE_ID: ${{ secrets.apple_id }}
APPLE_ID_PASS: ${{ secrets.apple_id_pass }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.apple_app_specific_password }}
APPLE_TEAM_ID: ${{ secrets.apple_team_id }}
if: github.ref == 'refs/heads/master'|| github.ref == 'refs/heads/production' || github.ref == 'refs/heads/dev'
runs-on: ${{ github.event.inputs.build_type }}
steps:
- name: EOL autocrlf input
if: ${{ github.event.inputs.build_type != 'windows-latest' }}
run: git config --global core.autocrlf input
- name: EOL autocrlf true
if: ${{ github.event.inputs.build_type == 'windows-latest' }}
run: git config --global core.autocrlf true
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 20.9.0
# - name: Install Python dependencies
# run: |
# python -m pip install setuptools
- name: Install Python dependencies
if: ${{ github.event.inputs.build_type == 'macos-latest' }}
run: |
which brew
brew --version
brew install python-setuptools
- name: Install desktop app dependencies
run: bash ./install.sh
- name: Build/release Electron app
uses: Yan-Jobs/[email protected]
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.publish_token }}
package_root: "."
mac_certs: ${{ secrets.mac_certs }}
mac_certs_password: ${{ secrets.mac_certs_password }}
windows_certs: ${{ secrets.dev_windows_certs }}
windows_certs_password: ${{ secrets.dev_windows_certs_password }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: true