testing windows build WIP3 #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'electron-build' | |
on: push | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, desktop-build] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v1 | |
- name: Read .nvmrc | |
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) | |
id: nvm | |
- name: Setup node js runtime | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ steps.nvm.outputs.NODE_VERSION }} | |
- uses: actions/setup-python@v4 #Install awscli on all platform | |
with: | |
python-version: '3.10' | |
- name: Install AWSCLI Package | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade pip | |
pip install awscli | |
- name: Configure AWS cli | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
- name: Download fonts from S3 | |
run: | | |
aws s3 sync s3://lisk-desktop-files/fonts ./setup/react/assets/fonts/ | |
- name: Prepare for mac os app notarization | |
if: startsWith(matrix.os, 'macos') | |
# Import Apple API key for app notarization on macOS | |
run: | | |
mkdir -p ~/private_keys/ | |
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8 | |
- name: Run pack:win | |
if: startsWith(matrix.os, 'desktop-build') | |
run: | | |
nvm use v18.16.1 | |
yarn -i && yarn pack:win | |
shell: powershell | |
- name: Build/release Electron app | |
if: startsWith(matrix.os, 'macos') | |
uses: samuelmeuli/action-electron-builder@v1 | |
env: | |
# macOS notarization API key | |
API_KEY_ID: ${{ secrets.api_key_id }} | |
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }} | |
with: | |
# windows cert credentials | |
windows_certs: ${{ secrets.windows_certs }} | |
windows_certs_password: ${{ secrets.windows_certs_password }} | |
# windows cert credentials | |
mac_certs: ${{ secrets.mac_certs }} | |
mac_certs_password: ${{ secrets.mac_certs_password }} | |
# 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') }} |