Skip to content

Commit

Permalink
ci: inject LOG_ENCRYPTION_PUBLIC_KEY from github env
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Aug 11, 2024
1 parent b2a73ed commit f681392
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ jobs:
env:
CI: false

- name: Inject LOG_ENCRYPTION_PUBLIC_KEY to encrypt sensitive log
run: |
echo "LOG_ENCRYPTION_PUBLIC_KEY=${{ secrets.LOG_ENCRYPTION_PUBLIC_KEY }}" >> packages/neuron-wallet/.env
- name: Package for MacOS
if: matrix.os == 'macos-latest'
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-wallet/electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ copyright: Copyright (C) 2019-2024 Nervos Foundation.
productName: Neuron

# This property will replace to false in package for test action
asar: true
asar: false

directories:
buildResources: .
Expand Down

1 comment on commit f681392

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 10338487388

Please sign in to comment.