File tree 2 files changed +3
-11
lines changed
2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,7 @@ generateLicenseMetadata(outRoot)
72
72
73
73
moveAnalysisFiles ( )
74
74
75
- if (
76
- ( isCircleCI ( ) || isGitHubActions ( ) ) &&
77
- process . platform === 'darwin' &&
78
- isPublishableBuild
79
- ) {
75
+ if ( isGitHubActions ( ) && process . platform === 'darwin' && isPublishableBuild ) {
80
76
console . log ( 'Setting up keychain…' )
81
77
cp . execSync ( path . join ( __dirname , 'setup-macos-keychain' ) )
82
78
}
Original file line number Diff line number Diff line change @@ -5,13 +5,9 @@ import * as cp from 'child_process'
5
5
import { getLogFiles } from './review-logs'
6
6
import { getProductName } from '../app/package-info'
7
7
import { getDistPath , isPublishable } from './dist-info'
8
- import { isCircleCI , isGitHubActions } from './build-platforms'
8
+ import { isGitHubActions } from './build-platforms'
9
9
10
- if (
11
- ( isCircleCI ( ) || isGitHubActions ( ) ) &&
12
- process . platform === 'darwin' &&
13
- isPublishable ( )
14
- ) {
10
+ if ( isGitHubActions ( ) && process . platform === 'darwin' && isPublishable ( ) ) {
15
11
const archive = `${ getDistPath ( ) } /${ getProductName ( ) } .app`
16
12
try {
17
13
console . log ( 'validating signature of Desktop app' )
You can’t perform that action at this time.
0 commit comments