Skip to content

Commit

Permalink
fix try
Browse files Browse the repository at this point in the history
  • Loading branch information
shuse2 committed May 18, 2024
1 parent ef202ed commit 4fddda4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/electron-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: 'electron-build'

on:
push:
branches:
- fix-deployment
tags:
- v3.*

Expand All @@ -22,6 +24,12 @@ jobs:
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
id: nvm

- name: Update package.json
run: |
jq '.build.mac.notarize.teamId = "${{ secrets.apple_team_id }}"' package.json > package_temp.json
mv package_temp.json package.json
- name: Setup node js runtime
uses: actions/setup-node@v4
with:
Expand All @@ -46,7 +54,7 @@ jobs:
- name: Download fonts from S3
run: |
aws s3 sync s3://lisk-desktop-files/fonts ./setup/react/assets/fonts/
- name: Install cpx
if: startsWith(matrix.os, 'desktop-build')
run: npm install -g cpx
Expand Down

0 comments on commit 4fddda4

Please sign in to comment.